Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TF_GraphRemoveFunction (0.17 sec)

  1. tensorflow/c/c_api_experimental.cc

            return nullptr;
          }
        }
        return lib_handle;
      }
    #endif
    }
    
    void TF_DeletePluggableDeviceLibraryHandle(TF_Library* lib_handle) {
      delete lib_handle;
    }
    
    void TF_GraphRemoveFunction(TF_Graph* g, const char* func_name,
                                TF_Status* status) {
      tensorflow::mutex_lock l(g->mu);
      status->status = g->graph.mutable_flib_def()->RemoveFunction(func_name);
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
Back to top