Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for original_funcs (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // Retrieve the names from the experimental_debug_info.
        for (int i = 0, e = original_nodes.size(); i != e; ++i) {
          auto node_name = original_nodes[i];
          auto func_name = (i < original_funcs.size()) ? original_funcs[i] : "";
          node_locations.push_back(create_location(node_name, func_name));
        }
        // Retrieve the name of the node_def.
        node_locations.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_quantization_unit_loc.mlir

      %2 = "tf.Cast"(%1) {Truncate = false} : (tensor<1x3x2x2xbf16>) -> tensor<1x3x2x2xf32>
      %3 = "tf.IdentityN"(%2) {device = ""} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xf32>
      return %3 : tensor<1x3x2x2xf32>
    // CHECK: tf.Conv2D
    // CHECK-SAME: loc(callsite("Model/conv2d@original_func"("Conv2D") at "QuantizationUnit({{.*}})"))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 02:39:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        MLIRContext *context = &getContext();
        ModuleOp module_op = getOperation();
        SmallVector<func::FuncOp, 4> original_func;
        for (auto func_op : module_op.getOps<func::FuncOp>()) {
          original_func.push_back(func_op);
        }
        for (auto func_op : original_func) {
          std::optional<llvm::StringMap<FunctionMetadata>> metadatas =
              GetFunctionMetadatas(func_op);
          if (!metadatas) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top