Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Cumsum (0.08 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK-LABEL: tranpose_arg64
      // CHECK: "tfl.transpose"
    }
    
    func.func @cumsum(%arg0: tensor<3x3xf32>, %arg1: tensor<i32>) -> tensor<3x3xf32> {
      %0 = "tf.Cumsum"(%arg0, %arg1) {exclusive = false, reverse = false} : (tensor<3x3xf32>, tensor<i32>) -> tensor<3x3xf32>
      func.return %0 : tensor<3x3xf32>
      // CHECK-LABEL: cumsum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          return TF::ArraysAreCastCompatible(l, r);
        }
    
      }];
    }
    
    def TFL_CumsumOp: TFL_Op<"cumsum", [
        Pure,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        TFL_OperandHasRank<1, 0>]> {
      let summary = "Cumsum operator";
    
      let description = [{
        Compute the cumulative sum of the tensor x along axis.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top