Home
last modified time | relevance | path

Searched refs:AddOp (Results 1 – 25 of 98) sorted by relevance

1234

/external/grpc-grpc/include/grpcpp/impl/codegen/
Dcall.h209 void AddOp(grpc_op* ops, size_t* nops) {} in AddOp() function
235 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
280 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
334 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
409 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
451 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
480 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
521 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
552 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
628 this->Op1::AddOp(ops, nops); in FillOps()
[all …]
/external/apache-commons-bcel/src/examples/Mini/
DMini.bnf10 Expr AddOp Expr
32 AddOp:
58 Term [AddOp Term]
DMini.jjt103 Term() [kind = AddOp() Expr() { jjtThis.setKind(kind); }]
204 int AddOp() #void :
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/
Dcall_op_set.h202 void AddOp(grpc_op* /*ops*/, size_t* /*nops*/) {} in AddOp() function
232 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
308 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
434 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
543 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
626 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
669 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
731 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
782 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
959 this->Op1::AddOp(ops, &nops); in ContinueFillOpsAfterInterception()
[all …]
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/
Dcall_op_set.h202 void AddOp(grpc_op* /*ops*/, size_t* /*nops*/) {} in AddOp() function
232 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
308 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
434 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
543 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
626 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
669 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
731 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
782 void AddOp(grpc_op* ops, size_t* nops) { in AddOp() function
959 this->Op1::AddOp(ops, &nops); in ContinueFillOpsAfterInterception()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/
Dchlo_legalize_to_hlo.cc88 poly = rewriter.create<mhlo::AddOp>( in MaterializePolynomialApproximation()
539 loc, coeff, rewriter.create<mhlo::AddOp>(loc, z, one_based_index)); in MaterializeLgamma()
540 a = rewriter.create<mhlo::AddOp>(loc, a, quotient); in MaterializeLgamma()
551 Value t = rewriter.create<mhlo::AddOp>(loc, lanczos_plus_half, z); in MaterializeLgamma()
556 Value log_t = rewriter.create<mhlo::AddOp>(loc, log_term, log1p_term); in MaterializeLgamma()
565 loc, rewriter.create<mhlo::AddOp>(loc, z, half), t_div_log_t); in MaterializeLgamma()
571 Value lgamma = rewriter.create<mhlo::AddOp>( in MaterializeLgamma()
573 rewriter.create<mhlo::AddOp>( in MaterializeLgamma()
686 Value z_term = rewriter.create<mhlo::AddOp>(loc, z, one_based_index); in MaterializeDigamma()
691 a = rewriter.create<mhlo::AddOp>( in MaterializeDigamma()
[all …]
Dunfuse_batch_norm.cc137 rewriter.create<mhlo::AddOp>(bn_op.getLoc(), bn_op.variance(), epsilon); in matchAndRewrite()
166 rewriter.replaceOpWithNewOp<mhlo::AddOp>(bn_op, result, broadcast_offset); in matchAndRewrite()
/external/deqp/framework/randomshaders/
DrsgBinaryOps.hpp114 class AddOp : public AddBase class
117 AddOp (GeneratorState& state, ConstValueRangeAccess valueRange);
118 virtual ~AddOp (void) {} in ~AddOp()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp852 Instruction *AddOp = nullptr, *SubOp = nullptr; in foldAddSubSelect() local
857 AddOp = FI; in foldAddSubSelect()
863 AddOp = TI; in foldAddSubSelect()
867 if (AddOp) { in foldAddSubSelect()
869 if (SubOp->getOperand(0) == AddOp->getOperand(0)) { in foldAddSubSelect()
870 OtherAddOp = AddOp->getOperand(1); in foldAddSubSelect()
871 } else if (SubOp->getOperand(0) == AddOp->getOperand(1)) { in foldAddSubSelect()
872 OtherAddOp = AddOp->getOperand(0); in foldAddSubSelect()
882 FastMathFlags Flags = AddOp->getFastMathFlags(); in foldAddSubSelect()
892 if (AddOp != TI) in foldAddSubSelect()
[all …]
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Doptimize.cc308 struct FuseFullyConnectedAndAdd : public OpRewritePattern<TFL::AddOp> {
309 using OpRewritePattern<TFL::AddOp>::OpRewritePattern;
311 LogicalResult matchAndRewrite(TFL::AddOp add_op, in matchAndRewrite()
373 rewriter.create<AddOp>(add_op.getLoc(), bias, constant_val, none_af) in matchAndRewrite()
383 rewriter.create<AddOp>(add_op.getLoc(), bias, constant_val, none_af) in matchAndRewrite()
652 if (llvm::isa<AddOp, SubOp>(binary_op)) { in matchAndRewrite()
879 ScalarizeSplatConstantForBroadcastableOps<TFL::AddOp>;
Dload_quantization_recipe.cc103 auto add = builder->create<AddOp>(loc, int16, in, l2_norm, none_af); in CreateLayerNorm()
175 auto new_cell = builder->create<AddOp>(loc, int16, forget_cell_state.output(), in LoadForLSTMOp()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_profile_printer.cc55 builder.AddOp( in PrintHloProfile()
Dhuman_readable_profile_builder.h48 void AddOp(absl::string_view op_name, absl::string_view short_name, in AddOp() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp586 SDValue AddOp; in isADDADDMUL() local
589 AddOp = N0; in isADDADDMUL()
592 AddOp = N1; in isADDADDMUL()
597 if (requireIntermediatesHaveOneUse && !AddOp.hasOneUse()) in isADDADDMUL()
605 Addend0 = AddOp.getOperand(0); in isADDADDMUL()
606 Addend1 = AddOp.getOperand(1); in isADDADDMUL()
609 if (AddOp.getOperand(0).getOpcode() == ISD::MUL) { in isADDADDMUL()
611 if (requireIntermediatesHaveOneUse && !AddOp.getOperand(0).hasOneUse()) in isADDADDMUL()
613 Mul0 = AddOp.getOperand(0).getOperand(0); in isADDADDMUL()
614 Mul1 = AddOp.getOperand(0).getOperand(1); in isADDADDMUL()
[all …]
/external/llvm-project/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp585 SDValue AddOp; in isADDADDMUL() local
588 AddOp = N0; in isADDADDMUL()
591 AddOp = N1; in isADDADDMUL()
596 if (requireIntermediatesHaveOneUse && !AddOp.hasOneUse()) in isADDADDMUL()
604 Addend0 = AddOp.getOperand(0); in isADDADDMUL()
605 Addend1 = AddOp.getOperand(1); in isADDADDMUL()
608 if (AddOp.getOperand(0).getOpcode() == ISD::MUL) { in isADDADDMUL()
610 if (requireIntermediatesHaveOneUse && !AddOp.getOperand(0).hasOneUse()) in isADDADDMUL()
612 Mul0 = AddOp.getOperand(0).getOperand(0); in isADDADDMUL()
613 Mul1 = AddOp.getOperand(0).getOperand(1); in isADDADDMUL()
[all …]
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp611 SDValue AddOp; in isADDADDMUL() local
614 AddOp = N0; in isADDADDMUL()
617 AddOp = N1; in isADDADDMUL()
622 if (requireIntermediatesHaveOneUse && !AddOp.hasOneUse()) in isADDADDMUL()
630 Addend0 = AddOp.getOperand(0); in isADDADDMUL()
631 Addend1 = AddOp.getOperand(1); in isADDADDMUL()
634 if (AddOp.getOperand(0).getOpcode() == ISD::MUL) { in isADDADDMUL()
636 if (requireIntermediatesHaveOneUse && !AddOp.getOperand(0).hasOneUse()) in isADDADDMUL()
638 Mul0 = AddOp.getOperand(0).getOperand(0); in isADDADDMUL()
639 Mul1 = AddOp.getOperand(0).getOperand(1); in isADDADDMUL()
[all …]
/external/tensorflow/tensorflow/c/eager/
Dc_api_test_util.h71 TFE_Op* AddOp(TFE_Context* ctx, TFE_TensorHandle* a, TFE_TensorHandle* b);
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/transforms/
Dmap_hlo_to_lhlo_op.h41 MAP_HLO_TO_LHLO(AddOp);
Dmap_chlo_to_hlo_op.h67 POPULATE_BCAST(BroadcastAddOp, mhlo::AddOp); in PopulateForBroadcastingBinaryOp()
Dmap_lmhlo_to_scalar_op.h44 struct LhloToScalarOp<lmhlo::AddOp> {
47 using COp = ::mlir::complex::AddOp;
153 inline Value MapLhloOpToStdScalarOp<lmhlo::AddOp>(Location loc,
157 return MapLhloOpToStdScalarOpImpl<IntegerType, ScalarIOp<lmhlo::AddOp>,
158 FloatType, ScalarFOp<lmhlo::AddOp>,
159 ComplexType, ScalarCOp<lmhlo::AddOp>>{}(
/external/llvm-project/mlir/examples/toy/Ch6/mlir/
DDialect.cpp218 void AddOp::build(mlir::OpBuilder &builder, mlir::OperationState &state, in build()
226 void AddOp::inferShapes() { getResult().setType(getOperand(0).getType()); } in inferShapes()
/external/llvm-project/mlir/examples/toy/Ch5/mlir/
DDialect.cpp218 void AddOp::build(mlir::OpBuilder &builder, mlir::OperationState &state, in build()
226 void AddOp::inferShapes() { getResult().setType(getOperand(0).getType()); } in inferShapes()
/external/llvm-project/mlir/examples/toy/Ch4/mlir/
DDialect.cpp218 void AddOp::build(mlir::OpBuilder &builder, mlir::OperationState &state, in build()
226 void AddOp::inferShapes() { getResult().setType(getOperand(0).getType()); } in inferShapes()
/external/tensorflow/tensorflow/python/compiler/xla/
Dxla.py200 def AddOp(self, op): member in XLACompileContext
291 self.AddOp(op)
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/
Dlegalize_tf.cc1136 rewriter.replaceOpWithNewOp<AddOp>(op, op.value(), bias_broadcast); in matchAndRewrite()
1415 BuildReduceBody<AddOp>(input_type.getElementType(), &reduce.body(), in matchAndRewrite()
1557 rewriter.create<AddOp>(loc, b_rows, in matchAndRewrite()
1590 Value n_plus_x = rewriter.create<AddOp>(loc, iotaN, x); in matchAndRewrite()
1591 Value n_plus_y = rewriter.create<AddOp>(loc, iotaN, y); in matchAndRewrite()
2241 BuildReduceBody<AddOp>(element_type, &divisor.body(), &rewriter); in AvgPoolDivideByCount()
2295 BuildReduceBody<AddOp>(sum_element_type, &reduce.body(), &rewriter); in matchAndRewrite()
2481 BuildReduceBody<AddOp>(sum_element_type, &reduce_window_op.body(), in matchAndRewrite()
2664 auto add_op = rewriter.create<AddOp>(loc, mul_op, half); in matchAndRewrite()
3711 : public GenericConvertReductionOp<ConvertMeanOp, TF::MeanOp, AddOp> {
[all …]

1234