[go: nahoru, domu]

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

[TEST] Reintroduce code issue that broke the build previously #67336

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
[TEST] Reintroduce code issue that broke the build previously
I wanna confirm that the CI really doesn't pick it up.

PiperOrigin-RevId: 632494435
  • Loading branch information
beckerhe authored and tensorflower-gardener committed Jun 26, 2024
commit a5e3fa7cd6fde080d809b0a52810a3b8784a0cc3
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class MultiHeadedAttentionTest : public GpuCodegenTest {
TF_ASSERT_OK_AND_ASSIGN(std::unique_ptr<HloModule> test_module,
ParseAndReturnVerifiedModule(hlo_string));
TF_ASSERT_OK_AND_ASSIGN(num_fmha_calls,
CountFMHACalls(test_module->Clone()));
CountFMHACalls(std::move(test_module->Clone())));
EXPECT_EQ(num_fmha_calls, expected_num_fmha_calls);
const Literal actual_result =
ExecuteAndTransfer(std::move(test_module), literals);
Expand Down
Loading