Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for semop (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      return IdentityArithmeticOpFolder<SubOp>(*this, operands);
    }
    
    //===----------------------------------------------------------------------===//
    // SumOp
    //===----------------------------------------------------------------------===//
    
    void SumOp::build(OpBuilder &builder, OperationState &result, Value input,
                      Value reduction_indices, BoolAttr keep_dims) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        }
        auto log_op = dyn_cast_or_null<TFL::LogOp>(sub_op.getRhs().getDefiningOp());
        if (!log_op || !log_op->hasOneUse()) {
          return failure();
        }
        auto sum_op = dyn_cast_or_null<TFL::SumOp>(log_op.getX().getDefiningOp());
        if (!sum_op || !sum_op.getKeepDims() ||
            !isSupportedAxis(
                sum_op.getAxes(),
                mlir::cast<ShapedType>(sum_op.getOperand(0).getType()).getRank())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            return failure();
        } else {
          return failure();
        }
    
        return success();
      }
    };
    
    class ConvertReduceOpToTfSum
        : public ConvertReduceOpToTfOp<mhlo::AddOp, TF::SumOp, TF::AddOp> {
     public:
      using ConvertReduceOpToTfOp::ConvertReduceOpToTfOp;
    
      LogicalResult MatchInitValue(Value init_value) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top