Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] Fix Pytorch profiler with emit_nvtx #6260

Merged
merged 20 commits into from
Mar 5, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update tests/trainer/test_trainer.py
  • Loading branch information
carmocca authored Mar 1, 2021
commit c30a9073a300187f3575875c2aab47681de6e8aa
2 changes: 1 addition & 1 deletion tests/trainer/test_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,7 @@ def test_pytorch_profiler_nested(tmpdir):
assert pa[n] == expected_[n]


@pytest.mark.skipif(True, reason="This tests need to be run with nvprof")
@pytest.mark.skip(reason="This tests need to be run with nvprof")
@pytest.mark.skipif(torch.cuda.device_count() < 1, reason="test requires a GPU machine")
def test_pytorch_profiler_nested_emit_nvtx(tmpdir):
"""
Expand Down