Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UniformQuantizedDot (0.36 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %weight_scales: tensor<f32>, %weight_zps: tensor<i32>,
      %output_scales: tensor<f32>, %output_zps: tensor<i32>) -> () {
      // expected-error @below {{'tf.UniformQuantizedDot' op quantization_axis is -1, scales must have 0 rank.}}
      %1 = "tf.UniformQuantizedDot"(
        %input, %weight,
        %input_scales, %input_zps,
        %weight_scales, %weight_zps,
        %output_scales, %output_zps) {
          lhs_quantization_axis = -1 : i64,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

              )
          )
        elif target_opset == quant_opts_pb2.UNIFORM_QUANTIZED:
          self.assertTrue(
              self._contains_op(
                  output_graphdef,
                  'UniformQuantizedDot',
                  node_name='sample/matmul.*',
              )
          )
    
        new_outputs = converted_model.signatures['serving_default'](
            input_tensor=ops.convert_to_tensor(input_data)
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top