Skip to content

Commit

Permalink
update test name and function
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Nov 22, 2023
1 parent c28cc07 commit fc46325
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def test_connected_components_labeling_box():
gpu_input = cle.push(np.asarray([[1, 0, 1], [1, 0, 0], [0, 0, 1]]))
gpu_reference = cle.push(np.asarray([[1, 0, 2], [1, 0, 0], [0, 0, 3]]))
gpu_output = cle.connected_components_labeling_box(gpu_input)
gpu_output = cle.connected_components_labeling(gpu_input)
a = cle.pull(gpu_output)
b = cle.pull(gpu_reference)
assert np.array_equal(a, b)

0 comments on commit fc46325

Please sign in to comment.