Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Blades (0.19 sec)

  1. tensorflow/c/env.h

    TF_CAPI_EXPORT extern void TF_DeleteFile(const char* filename,
                                             TF_Status* status);
    
    // Retrieves the next item from the given TF_StringStream and places a pointer
    // to it in *result. If no more items are in the list, *result is set to NULL
    // and false is returned.
    //
    // Ownership of the items retrieved with this function remains with the 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)
  2. tensorflow/c/c_api_experimental.h

    // library are platform-specific and are not documented here.
    //
    // On success, returns the newly created library handle and places OK in status.
    // The caller owns the library handle.
    //
    // On failure, returns nullptr and places an error status in status.
    TF_CAPI_EXPORT extern TF_Library* TF_LoadPluggableDeviceLibrary(
        const char* library_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)
  3. tensorflow/c/eager/unified_api_testutil.h

          TestScalarTensorHandle<T, datatype>(eager_ctx, value);
      *tensor =
          unwrap(TF_CreateAbstractTensorFromEagerTensor(input_eager, status.get()));
      return absl::OkStatus();
    }
    
    // Places data from `t` into *result_tensor.
    Status GetValue(AbstractTensorHandle* t, TF_Tensor** result_tensor);
    }  // namespace tensorflow
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 27 13:57:45 GMT 2024
    - 4K bytes
    - Viewed (0)
Back to top