Skip to content

Commit

Permalink
Merge pull request #30 from ROCm/ci_rocm-jaxlib-v0.4.28-gemm_alg_pick…
Browse files Browse the repository at this point in the history
…er-fix

Fixing gemm_algorithm_picker_test due to missing commit
  • Loading branch information
hsharsha authored Jul 19, 2024
2 parents 1a7f339 + 8d4bc3e commit 3483ccf
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions xla/service/gpu/gemm_algorithm_picker_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ TF_ASSERT_OK_AND_ASSIGN(auto module,
TF_ASSERT_OK_AND_ASSIGN(
bool changed,
RunHloPass(
GemmRewriter(gpu_comp(), /*toolkit_version=*/12040),
GemmRewriter(gpu_comp()),
module.get()));

AutotuneConfig cfg{DeviceConfig{stream_exec(), nullptr}, debug_opts};
Expand Down Expand Up @@ -135,7 +135,7 @@ TF_ASSERT_OK_AND_ASSIGN(auto module,
TF_ASSERT_OK_AND_ASSIGN(
bool changed,
RunHloPass(
GemmRewriter(gpu_comp(), /*toolkit_version=*/12040),
GemmRewriter(gpu_comp()),
module.get()));

AutotuneConfig cfg{DeviceConfig{stream_exec(), nullptr}, debug_opts};
Expand Down Expand Up @@ -165,7 +165,7 @@ ENTRY main {
TF_ASSERT_OK_AND_ASSIGN(
changed,
RunHloPass(
GemmRewriter(gpu_comp(), /*toolkit_version=*/12040),
GemmRewriter(gpu_comp()),
m.get()));
changed = false;
DebugOptions opts;
Expand All @@ -192,7 +192,7 @@ ENTRY main {
TF_ASSERT_OK_AND_ASSIGN(
changed,
RunHloPass(
GemmRewriter(gpu_comp(), /*toolkit_version=*/12040),
GemmRewriter(gpu_comp()),
m.get()));
changed = false;
TF_ASSERT_OK_AND_ASSIGN(changed,
Expand Down Expand Up @@ -226,7 +226,7 @@ ENTRY main {
TF_ASSERT_OK_AND_ASSIGN(
changed,
RunHloPass(
GemmRewriter(gpu_comp(), /*toolkit_version=*/12040),
GemmRewriter(gpu_comp()),
m.get()));
changed = false;

Expand Down Expand Up @@ -260,8 +260,7 @@ ENTRY main {
TF_ASSERT_OK_AND_ASSIGN(
changed,
RunHloPass(
GemmRewriter(gpu_comp(),
/*toolkit_version=*/12040),
GemmRewriter(gpu_comp()),
m.get()));
changed = false;
TF_ASSERT_OK_AND_ASSIGN(
Expand Down

0 comments on commit 3483ccf

Please sign in to comment.