Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for load3 (0.15 sec)

  1. tensorflow/c/env.h

                                                    void* param);
    
    // Waits for the given thread to finish execution, then deletes it.
    TF_CAPI_EXPORT extern void TF_JoinThread(TF_Thread* thread);
    
    // \brief Load a dynamic library.
    //
    // Pass "library_filename" to a platform-specific mechanism for dynamically
    // loading a library. The rules for determining the exact location of the
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sat Jan 09 02:53:27 GMT 2021
    - 9.6K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    // --------------------------------------------------------------------------
    // Load plugins containing custom ops and kernels
    
    // TF_Library holds information about dynamically loaded TensorFlow plugins.
    typedef struct TF_Library TF_Library;
    
    // Load the library specified by library_filename and register the ops and
    // kernels present in that library.
    //
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// `Env::LoadLibrary` or during TensorFlow's startup if they are on certain
    /// paths (although this has a security risk if two plugins register for the
    /// same filesystem and the malicious one loads before the legimitate one -
    /// but we consider this to be something that users should care about and
    /// manage themselves). In both of these cases, core TensorFlow looks for
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_remote_test_util.h

    // Run a function containing a MatMul op and check its output.
    // If heavy_load_on_streaming_rpc is true, send some rpc requests before the one
    // which creates a remote input, to simulate a scenario that the remote input
    // is not ready when we start running an op or a function.
    void TestRemoteExecuteSilentCopies(bool async, bool remote, bool func,
                                       bool heavy_load_on_streaming_rpc,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Dec 11 22:56:03 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_experimental.h

    TF_CAPI_EXPORT extern void TF_MakeInternalErrorStatus(TF_Status* status,
                                                          const char* errMsg);
    
    // TF_NewCheckpointReader() return the CheckpointReader that can be use to
    // investigate or load the variable from the checkpoint file
    typedef struct TF_CheckpointReader TF_CheckpointReader;
    TF_CAPI_EXPORT extern TF_CheckpointReader* TF_NewCheckpointReader(
        const char* filename, TF_Status* status);
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 15.1K bytes
    - Viewed (0)
Back to top