Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for composite_dot_general_fn_2 (0.56 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

            disabled_checks = [], function_list = [],
            has_token_input_output = false, module = "", platforms = [],
            version = 5 : i64
        }> {
            _entry_function = @composite_dot_general_fn_1,
            _original_entry_function = "composite_dot_general_fn_1",
            _tfl_quant_trait = "fully_quantizable",
            _quantization_method = "static_range_ptq { }"
        } : (tensor<?x100352xf32>, tensor<100352x10xf32>) -> tensor<?x10xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      auto target_op = FindUserOfType<T>(dynamic_broadcast_in_dim_op);
      return target_op;
    }
    
    // Gets the corresponding quantized function name from the given function name.
    // Example: "composite_dot_general_fn_1" => "quantized_dot_general_fn"
    std::string GetQuantizedFunctionName(const StringRef func_name) {
      return Twine(kQuantizedFuncPrefix)
          .concat(func_name.rsplit(kCompositeFuncPrefix).second)
          .str();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top