Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SEGMENT_SUM (0.09 sec)

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

      %0 = "tf.SegmentSum"(%arg0, %arg1) : (tensor<3x3xf32>, tensor<i32>) -> tensor<*xf32>
      func.return %0 : tensor<*xf32>
      // CHECK-LABEL: segmentsum
      // CHECK: "tfl.segment_sum"(%arg0, %arg1) : (tensor<3x3xf32>, tensor<i32>) -> tensor<*xf32>
    }
    
    func.func @segmentsum_i64(%arg0: tensor<3x3xf32>, %arg1: tensor<i64>) -> tensor<*xf32> {
    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

        bool GetDynamicRangeQuantKernelSupport() { return true; }
        std::vector<int> GetQuantizableOperandIndices() {
          return {1, 2};
        }
      }];
    }
    
    def TFL_SegmentSumOp: TFL_Op<"segment_sum", [
        Pure,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
      let summary = "SegmentSum operator";
    
      let description = [{
    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