From 97b79ac025b0943281e59a32904a569b676a0970 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Fri, 8 Nov 2024 18:29:17 -0800 Subject: [PATCH] Fix mesh-normal-vector benchmark array access mesh-normal-scalar correctly fills sequential values in the output for triangle cone function, but mesh-normal-vector accidentally reuses the loop index, which results in writes to every third index of the array (1, 4, etc.). This is both slower (as the table turns into a hash map), and incorrect, especially as we have a scalar version of the benchmark that does the right thing. --- bench/tests/mesh-normal-vector.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bench/tests/mesh-normal-vector.lua b/bench/tests/mesh-normal-vector.lua index b34f48f8..bfc0f1c7 100644 --- a/bench/tests/mesh-normal-vector.lua +++ b/bench/tests/mesh-normal-vector.lua @@ -86,7 +86,8 @@ function test() function compute_triangle_cones() local mesh_area = 0 - local i = 1 + local pos = 1 + for i = 1,#mesh.indices,3 do local p0 = mesh.vertices[mesh.indices[i]] local p1 = mesh.vertices[mesh.indices[i + 1]] @@ -100,9 +101,9 @@ function test() local area = vector.magnitude(normal) local invarea = (area == 0) and 0 or 1 / area; - mesh.triangle_cone_p[i] = (p0.p + p1.p + p2.p) / 3 - mesh.triangle_cone_n[i] = normal * invarea - i += 1 + mesh.triangle_cone_p[pos] = (p0.p + p1.p + p2.p) / 3 + mesh.triangle_cone_n[pos] = normal * invarea + pos += 1 mesh_area += area end