Home
last modified time | relevance | path

Searched refs:filecheck_result (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/tests/
Dllvm_irgen_test_base.cc57 StatusOr<bool> filecheck_result = RunFileCheck(ir_, pattern); in CompileAndVerifyIr() local
58 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() local
82 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() local
95 TF_ASSERT_OK(filecheck_result.status()); in MatchOptimizedHlo()
96 EXPECT_TRUE(filecheck_result.ValueOrDie()); in MatchOptimizedHlo()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/tests/
Dgpu_codegen_test.cc59 StatusOr<bool> filecheck_result = RunFileCheck(ptx_str, pattern); in CompileAndOptionallyVerifyPtx() local
60 ASSERT_TRUE(filecheck_result.ok()); in CompileAndOptionallyVerifyPtx()
61 EXPECT_TRUE(filecheck_result.ValueOrDie()); in CompileAndOptionallyVerifyPtx()
/external/llvm/test/Other/
Dopt-bisect-helper.py30 filecheck_result = subprocess.Popen(check_command, stdin=opt_result.stdout) variable
33 filecheck_result.wait()
34 if filecheck_result.returncode == 0:
/external/llvm-project/llvm/test/Other/
Dopt-bisect-helper.py32 filecheck_result = subprocess.Popen(check_command, stdin=opt_result.stdout) variable
35 filecheck_result.wait()
36 if filecheck_result.returncode == 0: