Skip to content
Open
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
2 changes: 1 addition & 1 deletion tests/transforms/test_nvtx_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
@unittest.skipUnless(has_nvtx, "Required torch._C._nvtx for NVTX Range!")
class TestNVTXRangeDecorator(unittest.TestCase):
@parameterized.expand([TEST_CASE_ARRAY_0, TEST_CASE_ARRAY_1])
def test_tranform_array(self, input):
def test_transform_array(self, input):
transforms = Compose([Range("random flip")(Flip()), Range()(ToTensor())])
# Apply transforms
output = transforms(input)
Expand Down
Loading