Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoadExecutable (0.13 sec)

  1. tensorflow/compiler/jit/device_executable_persistor_test.cc

                   const XlaCompiler::CompilationResult& result),
                  (override));
      MOCK_METHOD(absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>,
                  LoadExecutable,
                  (const XlaCompiler::Options& options,
                   const XlaCompiler::CompilationResult& result,
                   const std::string& serialized_executable),
                  (override));
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

      }
    
      TF_RETURN_IF_ERROR(
          VerifyLoadedCacheEntry(cache_key, hlo_module, *serialized_entry));
    
      VLOG(1) << "Loading cached entry for: " << signature_str;
      return compiler_client->LoadExecutable(options, compilation_result,
                                             serialized_entry->executable());
    }
    
    template <typename ExecutableType, typename ClientType>
    Status
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top