Skip to content

Commit

Permalink
PR #17156: [ROCm] Skip ConditionalIfWithMemset on ROCm, introduced in…
Browse files Browse the repository at this point in the history
… `201df9ca00`

Imported from GitHub PR #17156

Copybara import of the project:

--
2849f52 by Harsha HS <[email protected]>:

[ROCm] Skip ConditionalIfWithMemset on ROCm, introduced in `201df9ca00`

Merging this change closes #17156

COPYBARA_INTEGRATE_REVIEW=#17156 from ROCm:ci_skip_ConditionalIfWithMemset_onROCm_20240913 2849f52
PiperOrigin-RevId: 675087448
  • Loading branch information
hsharsha authored and Google-ML-Automation committed Sep 16, 2024
1 parent d5b8b57 commit 614c0c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions xla/stream_executor/gpu/gpu_command_buffer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,10 @@ TEST(GpuCommandBufferTest, ConditionalIfWithMemset) {
Platform* platform = GpuPlatform();
StreamExecutor* executor = platform->ExecutorForDevice(0).value();

if (platform->id() == rocm::kROCmPlatformId) {
GTEST_SKIP() << "Not supported on ROCM";
}

if (platform->id() == cuda::kCudaPlatformId &&
executor->GetDeviceDescription().driver_version() <
SemanticVersion{12, 4, 0}) {
Expand Down

0 comments on commit 614c0c0

Please sign in to comment.