Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_LoadSharedLibrary (0.23 sec)

  1. tensorflow/c/env.cc

    }
    
    void TF_JoinThread(TF_Thread* thread) {
      // ::tensorflow::Thread joins on destruction
      delete reinterpret_cast<::tensorflow::Thread*>(thread);
    }
    
    void* TF_LoadSharedLibrary(const char* library_filename, TF_Status* status) {
      void* handle = nullptr;
      TF_SetStatus(status, TF_OK, "");
      ::tensorflow::Set_TF_Status_from_Status(
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Aug 11 01:20:50 GMT 2021
    - 7K bytes
    - Viewed (0)
  2. tensorflow/c/env.h

    //
    // On success, place OK in status and return the newly created library handle.
    // Otherwise returns nullptr and set error status.
    TF_CAPI_EXPORT extern void* TF_LoadSharedLibrary(const char* library_filename,
                                                     TF_Status* status);
    
    // \brief Get a pointer to a symbol from a dynamic library.
    //
    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)
Back to top