Home
last modified time | relevance | path

Searched refs:true_block_generator (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dkernel_support_library.h209 const std::function<Status()>& true_block_generator,
214 const std::function<Status()>& true_block_generator,
218 return IfWithStatus("", condition, true_block_generator,
223 const std::function<void()>& true_block_generator,
225 If("", condition, true_block_generator, false_block_generator);
229 const std::function<void()>& true_block_generator,
235 true_block_generator();
244 true_block_generator();
Dkernel_support_library.cc61 const std::function<Status()>& true_block_generator, in IfWithStatus() argument
67 TF_RETURN_IF_ERROR(true_block_generator()); in IfWithStatus()