spelling: unnecessary

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2024-01-01 22:57:13 -05:00
parent 072f7e0b8c
commit 59b779b745
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class Axpby : public Primitive {
* A primitive must know how to evaluate itself on the CPU/GPU * A primitive must know how to evaluate itself on the CPU/GPU
* for the given inputs and populate the output array. * for the given inputs and populate the output array.
* *
* To avoid unecessary allocations, the evaluation function * To avoid unnecessary allocations, the evaluation function
* is responsible for allocating space for the array. * is responsible for allocating space for the array.
*/ */
void eval_cpu(const std::vector<array>& inputs, array& out) override; void eval_cpu(const std::vector<array>& inputs, array& out) override;

View File

@ -49,7 +49,7 @@ class Primitive {
* A primitive must know how to evaluate itself on * A primitive must know how to evaluate itself on
* the CPU/GPU for the given inputs and populate the output array. * the CPU/GPU for the given inputs and populate the output array.
* *
* To avoid unecessary allocations, the evaluation function * To avoid unnecessary allocations, the evaluation function
* is responsible for allocating space for the array. * is responsible for allocating space for the array.
*/ */
virtual void eval_cpu(const std::vector<array>& inputs, array& out) = 0; virtual void eval_cpu(const std::vector<array>& inputs, array& out) = 0;