Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for JoinPath (0.46 sec)

  1. tensorflow/cc/saved_model/experimental/tests/saved_model_api_test.cc

    using tensorflow::experimental::cc::Status;
    
    constexpr char kTestData[] = "cc/saved_model/testdata";
    
    std::string SavedModelPath(tensorflow::StringPiece saved_model_dir) {
      return tensorflow::io::JoinPath(tensorflow::testing::TensorFlowSrcRoot(),
                                      kTestData, saved_model_dir);
    }
    
    // This value parameterized test allows us to test both TFRT
    // and non TFRT runtimes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 14 23:59:14 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/controller.cc

      for (const auto& op : op_list_.op()) {
        for (const auto& dir : path_config_.api_dirs) {
          const string file_name = absl::Substitute("api_def_$0.pbtxt", op.name());
          const string file_path = io::JoinPath(dir, file_name);
          if (env_->FileExists(file_path).ok()) {
            TF_CHECK_OK(api_def_map_->LoadFile(env_, file_path)) << file_path;
          } else {
            // API defs are currently used for only optional pieces.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_experimental_test.cc

    #if !defined(PLATFORM_WINDOWS)
    #if !defined(TENSORFLOW_NO_SHARED_OBJECTS)
      // Load the library.
      TF_Status* status = TF_NewStatus();
      string lib_path =
          tensorflow::GetDataDependencyFilepath(tensorflow::io::JoinPath(
              "tensorflow", "c", "experimental", "stream_executor", "test",
              "test_pluggable_device.so"));
      TF_Library* lib = TF_LoadPluggableDeviceLibrary(lib_path.c_str(), status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/ops/restore_ops_test.cc

    #include "tensorflow/core/platform/stringpiece.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tensorflow {
    namespace {
    
    std::string CheckpointPrefix(StringPiece saved_model_dir) {
      return io::JoinPath(testing::TensorFlowSrcRoot(), "cc/saved_model/testdata",
                          saved_model_dir, kSavedModelVariablesDirectory,
                          kSavedModelVariablesFilename);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/statistics.cc

      for (const std::string& statistics_file : statistics_files) {
        TF_ASSIGN_OR_RETURN(
            const auto single_map,
            io::ReadBinaryProto<CalibrationStatisticsMap>(
                tsl::io::JoinPath(calibration_data_dir, statistics_file)));
        statistics_map.insert(single_map.statistics().begin(),
                              single_map.statistics().end());
      }
      return statistics_map;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

      for (const auto& file_name : file_names) {
        if (absl::EndsWith(file_name, ".pb") &&
            absl::StartsWith(file_name, file_prefix)) {
          XlaSerializedCacheEntry entry;
          auto file_path = io::JoinPath(persistent_cache_dir_path, file_name);
          TF_RETURN_IF_ERROR(ReadTextOrBinaryProto(env, file_path, &entry));
          entry.mutable_hlo_module()->set_name(
              absl::StrCat(entry.hlo_module().name(), "_altered"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/net/url/url.go

    		}
    	}
    	return false
    }
    
    // JoinPath returns a [URL] string with the provided path elements joined to
    // the existing path of base and the resulting path cleaned of any ./ or ../ elements.
    func JoinPath(base string, elem ...string) (result string, err error) {
    	url, err := Parse(base)
    	if err != nil {
    		return
    	}
    	result = url.JoinPath(elem...).String()
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

    }
    
    std::unique_ptr<FlatBufferModel> ReadTestModel() {
      auto model_path = tensorflow::io::JoinPath(
          *g_test_model_dir, internal::kConvModelWith0Plus10Weights);
      return FlatBufferModel::BuildFromFile(model_path.c_str());
    }
    
    std::unique_ptr<FlatBufferModel> ReadSharedWeightsTestModel() {
      auto model_path = tensorflow::io::JoinPath(*g_test_model_dir,
                                                 internal::kModelWithSharedWeights);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

    namespace {
    
    std::string GetOutputFilePath(absl::string_view calibration_data_dir,
                                  absl::string_view func_name,
                                  int32_t output_file_idx) {
      return tsl::io::JoinPath(calibration_data_dir,
                               llvm::Twine(func_name)
                                   .concat("_")
                                   .concat(std::to_string(output_file_idx))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/read.go

    				pkga = pkgtargetroot + "/" + p.ImportPath + ".a"
    			}
    			p.SrcRoot = ctxt.joinPath(p.Root, "src")
    			p.PkgRoot = ctxt.joinPath(p.Root, "pkg")
    			p.BinDir = ctxt.joinPath(p.Root, "bin")
    			if pkga != "" {
    				// Always set PkgTargetRoot. It might be used when building in shared
    				// mode.
    				p.PkgTargetRoot = ctxt.joinPath(p.Root, pkgtargetroot)
    
    				// Set the install target if applicable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top