Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 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. doc/go1.17_spec.html

    <code>package math</code>, which exports function <code>Sin</code>, and
    installed the compiled package in the file identified by
    <code>"lib/math"</code>.
    This table illustrates how <code>Sin</code> is accessed in files
    that import the package after the
    various types of import declaration.
    </p>
    
    <pre class="grammar">
    Import declaration          Local name of Sin
    
    import   "lib/math"         math.Sin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // particularly seems to be the case for the control edges between _SOURCE
      // and _SINK that the Graph constructor inserts. Copy the input edges and
      // sort the edges, but only the control edges, not data edges!
      // TODO(jmolloy): We should probably just ignore _SOURCE and _SINK nodes.
      // They'll break roundtripping anyway unless we strip them when converting
      // back to graphdef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. 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)
  5. 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