Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RELU_0_TO_1 (0.3 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema.fbs

      ASSIGN_VARIABLE = 144,
      BROADCAST_ARGS = 145,
      RANDOM_STANDARD_NORMAL = 146,
      BUCKETIZE = 147,
      RANDOM_UNIFORM = 148,
      MULTINOMIAL = 149,
      GELU = 150,
      DYNAMIC_UPDATE_SLICE = 151,
      RELU_0_TO_1 = 152,
      UNSORTED_SEGMENT_PROD = 153,
      UNSORTED_SEGMENT_MAX = 154,
      UNSORTED_SEGMENT_SUM = 155,
      ATAN2 = 156,
      UNSORTED_SEGMENT_MIN = 157,
      SIGN = 158,
      BITCAST = 159,
      BITWISE_XOR = 160,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def MinimumOfReluAnd6ToRelu6 :
      Pat<(TFL_MinimumOp (TFL_ReluOp $x), (Arith_ConstantOp $y)),
          (TFL_Relu6Op $x),
          [(IsConstantValueOf<6> $y)]>;
    
    // For both relu1 and relu_0_to_1, the min/max operators commute,
    // so there are two possible orderings we need to rewrite.
    // Concretely, `m < n -> max(m, min(n, x)) = min(m, max(m, x))`.
    // Proof:
    // case (x <= m)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      func.return %1 : tensor<2x2xf32>
      // CHECK-NOT: "tfl.relu"
      // CHECK-NOT: "tfl.minimum"
      // CHECK-NOT: "tfl.pseudo_const"
      // CHECK: "tfl.relu_0_to_1"(%arg0) : (tensor<2x2xf32>) -> tensor<2x2xf32>
    }
    
    // CHECK-LABEL:   func @fuseReluToMin1_StaticShapeWithBroadcastedCst_Float2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let builders = [
        OpBuilder<(ins "Value":$input),
        [{
          $_state.addOperands({input});
          $_state.addTypes(input.getType());
        }]>
      ];
    }
    
    def TFL_Relu0To1Op: TFL_Op<"relu_0_to_1", [
        PredOpTrait<"x and y must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        Pure,
        QuantizableResult,
        SameOperandsAndResultShape]> {
      let summary = "Relu0To1 operator";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    // -----
    
    func.func @testRelu0To1WithQuantizedTypes(%arg0 : tensor<10x!quant.uniform<u8:f32, 1.0>>) -> tensor<10x!quant.uniform<u8:f32, 1.0>> {
      %0 = "tfl.relu_0_to_1"(%arg0) : (tensor<10x!quant.uniform<u8:f32, 1.0>>) -> tensor<10x!quant.uniform<u8:f32, 1.0>>
      func.return %0 : tensor<10x!quant.uniform<u8:f32, 1.0>>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top