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 (#951)

Summary:
Pull Request resolved: #951

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: #949

Test Plan: CI

Reviewed By: sraikund16

Differential Revision: D58588836

Pulled By: aaronenyeshi

fbshipit-source-id: 4b1c02d18e235d1c8a4f7c5162d59950cfa89dcb
  • Loading branch information
aaronenyeshi authored and facebook-github-bot committed Jun 14, 2024
1 parent db1f25e commit c0c0dbd
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 c0c0dbd

Please sign in to comment.