Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for createSumOp (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      return rewriter->create<arith::ConstantOp>(loc, values_type, constant_attr);
    }
    
    // Function to create a tf.SumOp to sum the element in 'value' reduced along the
    // 'redux_axes'.
    TF::SumOp createSumOp(Value value, Location loc,
                          llvm::ArrayRef<int32_t> redux_axes,
                          PatternRewriter* rewriter) {
      Value redux_op = createI32ConstantOp(redux_axes, loc, rewriter);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top