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

  /external/tensorflow/tensorflow/core/kernels/
constant_op.h 26 // ConstantOp returns a tensor specified by ConstantOpDef.
27 class ConstantOp : public OpKernel {
29 explicit ConstantOp(OpKernelConstruction* ctx);
32 ~ConstantOp() override;
36 TF_DISALLOW_COPY_AND_ASSIGN(ConstantOp);
constant_op.cc 70 ConstantOp::ConstantOp(OpKernelConstruction* ctx)
84 void ConstantOp::Compute(OpKernelContext* ctx) {
91 ConstantOp::~ConstantOp() {}
93 REGISTER_KERNEL_BUILDER(Name("Const").Device(DEVICE_CPU), ConstantOp);
99 ConstantOp);
126 ConstantOp);
  /external/llvm/include/llvm/CodeGen/
StackMaps.h 89 /// [call arguments], <StackMaps::ConstantOp>, <calling convention>,
90 /// <StackMaps::ConstantOp>, <statepoint flags>,
91 /// <StackMaps::ConstantOp>, <num other args>, [other args],
163 typedef enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp } OpType;
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 485 Constant *ConstantOp = nullptr;
500 ConstantOp = dyn_cast<Constant>(FirstInst->getOperand(1));
501 if (!ConstantOp)
515 } else if (I->getOperand(1) != ConstantOp) {
557 BinOp = BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
569 PhiVal, ConstantOp);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombinePHI.cpp 403 Constant *ConstantOp = 0;
419 ConstantOp = dyn_cast<Constant>(FirstInst->getOperand(1));
420 if (ConstantOp == 0)
442 } else if (I->getOperand(1) != ConstantOp) {
491 BinOp = BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
501 PhiVal, ConstantOp);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 741 Constant *ConstantOp = nullptr;
756 ConstantOp = dyn_cast<Constant>(FirstInst->getOperand(1));
757 if (!ConstantOp)
771 } else if (I->getOperand(1) != ConstantOp) {
813 BinOp = BinaryOperator::Create(BinOp->getOpcode(), PhiVal, ConstantOp);
825 PhiVal, ConstantOp);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
StackMaps.h 149 /// <StackMaps::ConstantOp>, <calling convention>,
150 /// <StackMaps::ConstantOp>, <statepoint flags>,
151 /// <StackMaps::ConstantOp>, <num deopt args>, [deopt args...],
229 using OpType = enum { DirectMemRefOp, IndirectMemRefOp, ConstantOp };
  /external/tensorflow/tensorflow/compiler/jit/
xla_device_ops.h 96 ConstantOp); \
  /external/llvm/lib/CodeGen/
StackMaps.cpp 117 case StackMaps::ConstantOp: {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
StackMaps.cpp 132 case StackMaps::ConstantOp: {
MachineVerifier.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 45 Ops.push_back(Builder.DAG.getTargetConstant(StackMaps::ConstantOp, L,
    [all...]
FastISel.cpp 576 // Check for constants and encode them with a StackMaps::ConstantOp prefix.
578 Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp));
581 Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp));
    [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 68 Ops.push_back(Builder.DAG.getTargetConstant(StackMaps::ConstantOp, L,
    [all...]
FastISel.cpp 754 // Check for constants and encode them with a StackMaps::ConstantOp prefix.
756 Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp));
759 Ops.push_back(MachineOperand::CreateImm(StackMaps::ConstantOp));
    [all...]
DAGCombiner.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]

Completed in 1182 milliseconds