Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for composite_dot_general_fn_2 (0.39 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

                  StrEq("composite_dot_general_fn_2"));
      EXPECT_TRUE(quantized_result.method().has_static_range_ptq());
    
      // Test that the non-quantized op is captured in `results`.
      const QuantizationResult& non_quantized_result = results.results(1);
      EXPECT_THAT(non_quantized_result.quantizable_unit().name(),
                  StrEq("composite_dot_general_fn_1"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            # function name matches "composite_dot_general_fn_1".
            # "composite_dot_general_fn_2" will be quantized.
            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        matcher=qc.MatcherSpec(
                            function_name=qc.FunctionNameMatcherSpec(
                                regex='composite_dot_general_fn_1'
                            )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize.mlir

    func.func private @quantize_simple_xla_call_module_no_operand() -> tensor<1x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 01:38:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      ASSERT_TRUE(module_op);
    
      auto composite_dot_general_fn =
          module_op->lookupSymbol<func::FuncOp>("composite_dot_general_fn_1");
      ASSERT_THAT(composite_dot_general_fn, NotNull());
    
      auto dot_general_op = FindOperationOfType<mlir::stablehlo::DotGeneralOp>(
          composite_dot_general_fn);
      EXPECT_TRUE(IsInLiftedFunc(dot_general_op));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration_test.cc

      EXPECT_THAT(xla_call_module_op,
                  HasSymNameAttr("_entry_function",
                                 StartsWith("composite_dot_general_fn")));
      EXPECT_THAT(xla_call_module_op,
                  HasStringAttr("_original_entry_function",
                                StartsWith("composite_dot_general_fn")));
    
      // Tests that there are CustomAggregatorOps inserted.
      SmallVector<TF::CustomAggregatorOp> custom_aggregator_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

          %1 = "tf.XlaCallModule"(%0, %cst) {Sout = [#tf_type.shape<1x3>], _entry_function = @composite_dot_general_fn, _original_entry_function = "composite_dot_general_fn", _quantization_method = "static_range_ptq { }", _stablehlo_module_attrs = {}, _tfl_quant_trait = "fully_quantizable", device = "", dim_args_spec = [], disabled_checks = [], has_token_input_output = false, module...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/xla_call_module_to_call.mlir

        return %2 : tensor<1x3xf32>
      }
      // CHECK-LABEL: func.func private @composite_dot_general_fn_1
      // CHECK-SAME: -> tensor<1x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 20:02:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/restore_function_name.mlir

        return %0 : tensor<1x3xf32>
        // CHECK: %[[CALL:.+]] = "tf.XlaCallModule"(%[[ARG0]], %[[ARG1]])
        // CHECK-SAME: _entry_function = @composite_dot_general_fn_1
        // CHECK-SAME: _original_entry_function = "composite_dot_general_fn_1"
        // CHECK: return %[[CALL]]
      }
    
      // CHECK: @composite_dot_general_fn_1
      // CHECK-SAME: %[[ARG2:[^:[:space:]]+]]
      // CHECK-SAME: %[[ARG3:[^:[:space:]]+]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op_stablehlo.mlir

    // WholeModel-DAG: "tf.DumpTensor"(%[[matmul0_q]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "composite_dot_general_fn_1", log_dir_path = "/tmp/dumps/composite_dot_general_fn_1",...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // quantization method, implying "no_quantization".
    // EMPTY-SAME: _entry_function = @composite_dot_general_fn_1
    // EMPTY-SAME: _original_entry_function
    // EMPTY-NOT: _quantization_method
    // EMPTY-SAME: _tfl_quant_trait = "fully_quantizable"
    
    // EMPTY: return %[[XLA_CALL_MODULE:.+]] : tensor<1x1x64xf32>
    // EMPTY: }
    
    // EMPTY-LABEL: private @composite_dot_general_fn_1
    // EMPTY-SAME: tf_quant.composite_function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top