Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tensor_names (0.14 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        mlir::BlockArgument arg = bb.getArgument(i);
        std::string tensor_name;
        if (has_input_attr)
          tensor_name = std::string(name_mapper_.GetUniqueName(arg));
        if (tensor_name.empty()) tensor_name = absl::StrCat("arg", i);
        if (!build_tensor_and_buffer(arg, index, tensor_name)) return std::nullopt;
      }
    
      bool failed_once = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      inputs.reserve(assets.size());
      for (const auto& asset : assets) {
        TensorInfo tensor_info;
        tensor_info.set_name(asset.tensor_name);
        tensor_info.set_dtype(DT_STRING);
        tensor_info.mutable_tensor_shape();
        inputs.push_back({asset.tensor_name, tensor_info});
      }
    
      std::unordered_map<std::string, std::string> tf_name_to_mlir_name;
      TF_ASSIGN_OR_RETURN(auto sub_module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top