spelling: computation

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2024-01-01 22:29:23 -05:00
parent d26e758aa0
commit 2a5a690b92

View File

@ -57,7 +57,7 @@ void array_basics() {
assert(z.shape(0) == 2); assert(z.shape(0) == 2);
assert(z.shape(1) == 2); assert(z.shape(1) == 2);
// To actually run the compuation you must evaluate `z`. // To actually run the computation you must evaluate `z`.
// Under the hood, mlx records operations in a graph. // Under the hood, mlx records operations in a graph.
// The variable `z` is a node in the graph which points to its operation // The variable `z` is a node in the graph which points to its operation
// and inputs. When `eval` is called on an array (or arrays), the array and // and inputs. When `eval` is called on an array (or arrays), the array and