Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LoadExecutable (0.2 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/pjrt_device_compiler_client.cc

      TF_ASSIGN_OR_RETURN(auto executable, BuildExecutable(options, result));
      return executable->SerializeExecutable();
    }
    
    absl::StatusOr<std::unique_ptr<xla::PjRtLoadedExecutable>>
    PjRtDeviceCompilerClient::LoadExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result,
        const std::string& serialized_executable) {
      VLOG(1) << "Deserializing from string to xla::PjRtLoadedExecutable.";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_compiler_client.h

      // Loads a serialized AOT result (`serialized_executable`) into an
      // xla::LocalExecutable and returns it.
      absl::StatusOr<std::unique_ptr<xla::LocalExecutable>> LoadExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
          const std::string& serialized_executable) override;
    
      void WaitForProgramsToFinish() override;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler_client.h

          const XlaCompiler::CompilationResult& result) = 0;
    
      // Loads `serialized_executable` into an `ExecutableType` using `ClientType`.
      virtual StatusOr<std::unique_ptr<ExecutableType>> LoadExecutable(
          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
          const std::string& serialized_executable) = 0;
    
      // Waits for the underlying `ClientType` backend's programs to finish
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device_compiler_client.cc

      TF_RET_CHECK(aot_results.size() == 1);
      return aot_results[0]->SerializeAsString();
    }
    
    absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>
    XlaDeviceCompilerClient::LoadExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result,
        const std::string& serialized_executable) {
      VLOG(2) << "Loading xla::LocalExecutable from a serialized "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/pjrt_device_compiler_client.h

      // function doesn't use PjRtClient::LoadSerializedExecutable() and uses
      // PjRtClient::DeserializeExecutable() instead.
      absl::StatusOr<std::unique_ptr<xla::PjRtLoadedExecutable>> 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: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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