Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
Back to top