Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for individual (0.17 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

            "memory regions");
    
      return OkStatus();
    }
    
    // Validates the operations supplied by the plugin.
    //
    // Uses the 4 simpler `ValidateHelper(const TF_...*)` to validate each
    // individual function table and then checks that the function table for a
    // specific file type exists if the plugin offers support for creating that
    // type of files.
    static Status ValidateOperations(const TF_FilesystemPluginOps* ops) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 07 22:08:43 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

      // Define the functions
      TF_Function* func;
      TF_Function* grad_func;
      DefineFunction("FooFunc", &func);
      DefineFunction("MyGrad", &grad_func);
    
      // Add functions individually
      TF_GraphCopyFunction(host_graph_, func, nullptr, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      TF_GraphCopyFunction(host_graph_, grad_func, nullptr, s_);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
Back to top