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

Skip TestAutograd.test_profiler temporarily #732

Merged
merged 3 commits into from
Aug 10, 2024
Merged
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
12 changes: 12 additions & 0 deletions test/xpu/run_test_with_skip.py
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,12 @@ def launch_test(test_case, skip_list=None, exe_list=None):
"test_copy__xpu",
"test_checkpointing_non_reentrant_autocast_cpu",
"test_per_dispatch_key_input_saving_xpu",

# Runtime error after enabling PTI
# RuntimeError: Fail to enable Kineto Profiler on XPU due to error code: 200
# https://github.com/intel/torch-xpu-ops/issues/731
"test_profiler",
"test_record_function",
)
res += launch_test("test_autograd_xpu.py", skip_list)

Expand Down Expand Up @@ -1862,6 +1868,12 @@ def launch_test(test_case, skip_list=None, exe_list=None):
# XPU does not support tunable.
"test_bmm_tunableop_rocm_xpu_float32",
"test_numeric_check_leak_tunableop_rocm_xpu_float32",

# CUDA bias cases added in latest PyTorch
# AttributeError: module 'torch._C' has no attribute '_cuda_tunableop_enable'
"test_matmul_check_entries_tunableop_xpu_float16",
"test_minimum_tuning_iteration_tunableop_xpu_float16",
"test_validator_tunableop_rocm_xpu_float32",
)
res += launch_test("test_linalg_xpu.py", skip_list)

Expand Down