From 76ac49cac3c3755ea84dd3f0536fa271a66a5e7e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 1 Jan 2024 23:04:49 -0500 Subject: [PATCH] spelling: collision Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- tests/ops_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ops_tests.cpp b/tests/ops_tests.cpp index 1fa3035a2..044edf7fd 100644 --- a/tests/ops_tests.cpp +++ b/tests/ops_tests.cpp @@ -1733,7 +1733,7 @@ TEST_CASE("test scatter") { out = scatter(in, inds, updates, 0); CHECK(array_equal(out, reshape(arange(16, float32), {4, 4})).item()); - // Irregular strided index and reduce collison test + // Irregular strided index and reduce collision test in = zeros({10}, float32); inds = broadcast_to(array(3), {10}); updates = ones({10, 1}, float32);