Skip to content

Commit

Permalink
Change LUT size in Benchmark from 16-Bit to 32-Bit
Browse files Browse the repository at this point in the history
This changes the size of the LUT used in the Benchmark suite from 16 to
the new 32-Bit size.

fixes #18
  • Loading branch information
etrommer committed Dec 6, 2023
1 parent 9a623b8 commit 1a5c9ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def lut():
x = np.arange(256)
x[x >= 128] -= 256
xx, yy = np.meshgrid(x, x)
return torch.from_numpy(xx * yy).short()
return torch.from_numpy(xx * yy).int()


@pytest.fixture(params=networks)
Expand Down

0 comments on commit 1a5c9ac

Please sign in to comment.