Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _sin (0.06 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                x,
                min=ops.convert_to_tensor(self._min[0]),
                max=ops.convert_to_tensor(self._max[0]),
                num_bits=8,
                narrow_range=False,
            )
            y = array_ops.fake_quant_with_min_max_vars(
                y,
                min=ops.convert_to_tensor(self._min[1]),
                max=ops.convert_to_tensor(self._max[1]),
                num_bits=8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

    ^bb0(%arg0: tensor<? x f32>):
      // CHECK: "tfl.sin"(%arg0)
      %0 = "tfl.sin"(%arg0): (tensor<? x f32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // -----
    
    // test invalid Sin input
    func.func @testSinWithWrongInputType(tensor<?xi32>) -> tensor<?xi32> {
    ^bb0(%arg0: tensor<?xi32>):
      // expected-error @+1 {{tfl.sin' op operand #0 must be tensor of 32-bit float values}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        OpBuilder<(ins "Value":$cond, "Value":$x, "Value":$y),
        [{
        BuildSelectV2Op(&$_builder, $_state, cond, x, y);
      }]>];
    
      let hasOptions = 1;
    }
    
    def TFL_SinOp: TFL_Op<"sin", [
        Pure,
        TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Sine operator";
    
      let description = [{
        Computes element-wise Sine of input
      }];
    
    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