Skip to content
Snippets Groups Projects
Unverified Commit 0cefc9ed authored by Yaman Umuroglu's avatar Yaman Umuroglu Committed by GitHub
Browse files

[Test] unsigned only in LabelSelect

turns out there was a problem with signed values after all
failing testcases with k=5 produce the indices of positive values correctly, but negative ones don't seem to be compared correctly (always producing index 0?)
parent e8e13f20
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@ def prepare_inputs(input_tensor, idt):
# TODO: folded inputs fail, likely problem in hlslib
# input datatype -- checked by assertion in HLSCustomOp
@pytest.mark.parametrize("idt", [DataType.UINT8, DataType.INT16])
@pytest.mark.parametrize("idt", [DataType.UINT8, DataType.UINT16])
# labels
@pytest.mark.parametrize("labels", [10, 1000])
# folding
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment