Searched refs:filecheck_result (Results 1 – 4 of 4) sorted by relevance
57 StatusOr<bool> filecheck_result = RunFileCheck(ir_, pattern); in CompileAndVerifyIr() local58 TF_ASSERT_OK(filecheck_result.status()); in CompileAndVerifyIr()59 EXPECT_TRUE(filecheck_result.ValueOrDie()) << "Full IR: " << ir_; in CompileAndVerifyIr()81 StatusOr<bool> filecheck_result = RunFileCheck(ir_, pattern); in CompileAheadOfTimeAndVerifyIr() local82 ASSERT_TRUE(filecheck_result.ok()); in CompileAheadOfTimeAndVerifyIr()83 EXPECT_TRUE(filecheck_result.ValueOrDie()) << "Full IR: " << ir_; in CompileAheadOfTimeAndVerifyIr()93 StatusOr<bool> filecheck_result = in MatchOptimizedHlo() local95 TF_ASSERT_OK(filecheck_result.status()); in MatchOptimizedHlo()96 EXPECT_TRUE(filecheck_result.ValueOrDie()); in MatchOptimizedHlo()
59 StatusOr<bool> filecheck_result = RunFileCheck(ptx_str, pattern); in CompileAndOptionallyVerifyPtx() local60 ASSERT_TRUE(filecheck_result.ok()); in CompileAndOptionallyVerifyPtx()61 EXPECT_TRUE(filecheck_result.ValueOrDie()); in CompileAndOptionallyVerifyPtx()
30 filecheck_result = subprocess.Popen(check_command, stdin=opt_result.stdout) variable33 filecheck_result.wait()34 if filecheck_result.returncode == 0:
32 filecheck_result = subprocess.Popen(check_command, stdin=opt_result.stdout) variable35 filecheck_result.wait()36 if filecheck_result.returncode == 0: