HomeSort by relevance Sort by last modified time
    Searched refs:AssertOp (Results 1 - 5 of 5) sorted by null

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
assert_op.cc 26 class AssertOp : public XlaOpKernel {
28 explicit AssertOp(OpKernelConstruction* ctx) : XlaOpKernel(ctx) {}
29 ~AssertOp() override {}
43 TF_DISALLOW_COPY_AND_ASSIGN(AssertOp);
46 REGISTER_XLA_OP(Name("Assert"), AssertOp);
  /external/tensorflow/tensorflow/core/kernels/
logging_ops.cc 70 class AssertOp : public OpKernel {
72 explicit AssertOp(OpKernelConstruction* ctx) : OpKernel(ctx) {
98 REGISTER_KERNEL_BUILDER(Name("Assert").Device(DEVICE_CPU), AssertOp);
105 AssertOp);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 94 /// larger then ValueVT then AssertOp can be used to specify whether the extra
100 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
188 if (AssertOp != ISD::DELETED_NODE)
189 Val = DAG.getNode(AssertOp, DL, PartVT, Val,
214 /// larger then ValueVT then AssertOp can be used to specify whether the extra
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 125 /// larger than ValueVT then AssertOp can be used to specify whether the extra
131 Optional<ISD::NodeType> AssertOp = None) {
236 if (AssertOp.hasValue())
237 Val = DAG.getNode(*AssertOp, DL, PartEVT, Val,
273 /// type larger than ValueVT then AssertOp can be used to specify whether the
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 193 /// larger than ValueVT then AssertOp can be used to specify whether the extra
200 Optional<ISD::NodeType> AssertOp = None) {
305 if (AssertOp.hasValue())
306 Val = DAG.getNode(*AssertOp, DL, PartEVT, Val,
342 /// type larger than ValueVT then AssertOp can be used to specify whether the
    [all...]

Completed in 747 milliseconds