Searched refs:AfterAll (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | graph_compiler.cc | 282 xla::XlaOp token_input = xla::AfterAll(b, token_inputs); in CompileFunctionalNode()
|
D | xla_compiler.cc | 1137 token_output.reset(new xla::XlaOp(xla::AfterAll(&builder, token_inputs))); in CompileGraph()
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | if_op.cc | 212 inputs[i] = xla::AfterAll(b, token_inputs); in Compile()
|
D | case_op.cc | 224 inputs[i] = xla::AfterAll(b, token_inputs); in Compile()
|
D | while_op.cc | 477 inputs[i] = xla::AfterAll(builder, token_inputs); in Compile()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_matchers.h | 206 HLO_MATCHER(AfterAll);
|
D | hlo_computation_test.cc | 395 EXPECT_THAT(copy, GmockMatch(m::AfterAll())); in TEST_F()
|
D | pattern_matcher.h | 2274 XLA_VARIADIC_OP_PATTERN(AfterAll);
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | xla_builder.h | 563 XlaOp AfterAll(absl::Span<const XlaOp> tokens); 1004 friend XlaOp AfterAll(XlaBuilder* builder, absl::Span<const XlaOp> tokens); 1875 XlaOp AfterAll(XlaBuilder* builder, absl::Span<const XlaOp> tokens);
|
D | xla_builder_test.cc | 948 AfterAll(&b, {CreateToken(&b), ConstantR0<float>(&b, 1.0)}); in TEST_F()
|
D | xla_builder.cc | 1473 XlaOp XlaBuilder::AfterAll(absl::Span<const XlaOp> tokens) { in AfterAll() function in xla::XlaBuilder 3482 XlaOp AfterAll(XlaBuilder* builder, absl::Span<const XlaOp> tokens) { in AfterAll() function 3483 return builder->AfterAll(tokens); in AfterAll()
|
/external/tensorflow/tensorflow/compiler/xla/g3doc/ |
D | operation_semantics.md | 16 ## AfterAll section in Operation Semantics 19 [`XlaBuilder::AfterAll`](https://www.tensorflow.org/code/tensorflow/compiler/xla/client/xla_builder… 21 AfterAll takes a variadic number of tokens and produces a single token. Tokens 23 enforce ordering. `AfterAll` can be used as a join of tokens for ordering a 26 <b> `AfterAll(operands)` </b>
|