Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/conformance/conformance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ def test_multinomial(input, num_samples, replacement):
assert has_duplicates is False, "failed to execute multinomial"
out_numpy = out_numpy.flatten()
assert len(out_numpy) % num_samples == 0, "failed to execute multinomial"
assert np.all(out_numpy < input.shape[-1]), "failed to execute multinomial"


def config_to_format_string(data, indent=0):
Expand Down
Loading