Skip to content

Commit

Permalink
Skip CUPTIRangeProfilerApiTest and CuptiRangeProfilerTest due to SEGF…
Browse files Browse the repository at this point in the history
…AULT in CUDA 12.4

Summary:
Github Actions CI on NVIDIA A10G instances are failing for these tests since the upgrade to 12.4:

19 - CuptiRangeProfilerApiTest.asyncLaunchUserRange (SEGFAULT)
20 - CuptiRangeProfilerApiTest.asyncLaunchAutoRange (SEGFAULT)
24 - CuptiRangeProfilerTest.UserRangeTest (SEGFAULT)
25 - CuptiRangeProfilerTest.AutoRangeTest (SEGFAULT)

We are tracking the issue here: pytorch#949

Differential Revision: D58588836

Pulled By: aaronenyeshi
  • Loading branch information
aaronenyeshi authored and facebook-github-bot committed Jun 14, 2024
1 parent db1f25e commit fdf5193
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions libkineto/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ target_include_directories(CuptiRangeProfilerApiTest PRIVATE
"${LIBKINETO_DIR}/src"
"${CUDA_SOURCE_DIR}/include"
"${CUPTI_INCLUDE_DIR}")
gtest_discover_tests(CuptiRangeProfilerApiTest)
# Skipping due to SEGFault in 12.4
# Tracked here: https://github.com/pytorch/kineto/issues/949
# gtest_discover_tests(CuptiRangeProfilerApiTest)

# CuptiRangeProfilerConfigTest
add_executable(CuptiRangeProfilerConfigTest CuptiRangeProfilerConfigTest.cpp)
Expand Down Expand Up @@ -94,7 +96,9 @@ target_include_directories(CuptiRangeProfilerTest PRIVATE
"${LIBKINETO_DIR}/src"
"${CUDA_SOURCE_DIR}/include"
"${CUPTI_INCLUDE_DIR}")
gtest_discover_tests(CuptiRangeProfilerTest)
# Skipping due to SEGFault in 12.4
# Tracked here: https://github.com/pytorch/kineto/issues/949
# gtest_discover_tests(CuptiRangeProfilerTest)

# CuptiStringsTest
add_executable(CuptiStringsTest CuptiStringsTest.cpp)
Expand Down

0 comments on commit fdf5193

Please sign in to comment.