From 5f7a2b3f3fd10ac88eae27cef28f22c3962c1f1a Mon Sep 17 00:00:00 2001 From: Attila Krasznahorkay Date: Sat, 20 Apr 2024 08:01:14 +0200 Subject: [PATCH] Ordered the test cells, to make the algorithm work. --- tests/sycl/test_clusterization.sycl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/sycl/test_clusterization.sycl b/tests/sycl/test_clusterization.sycl index 2da7b5b386..0a1a42af28 100644 --- a/tests/sycl/test_clusterization.sycl +++ b/tests/sycl/test_clusterization.sycl @@ -51,11 +51,11 @@ TEST(clusterization, sycl) { cells.push_back({2u, 2u, 1.f, 0, 0}); cells.push_back({3u, 2u, 1.f, 0, 0}); - cells.push_back({5u, 5u, 1.f, 0, 0}); cells.push_back({6u, 4u, 1.f, 0, 0}); + cells.push_back({5u, 5u, 1.f, 0, 0}); cells.push_back({6u, 5u, 1.f, 0, 0}); - cells.push_back({6u, 6u, 1.f, 0, 0}); cells.push_back({7u, 5u, 1.f, 0, 0}); + cells.push_back({6u, 6u, 1.f, 0, 0}); // Create module collection traccc::cell_module_collection_types::host modules{&shared_mr};