Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sheugh (0.18 sec)

  1. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_DeleteFunction(TF_Function* func);
    
    // Attempts to evaluate `output`. This will only be possible if `output` doesn't
    // depend on any graph inputs (this function is safe to call if this isn't the
    // case though).
    //
    // If the evaluation is successful, this function returns true and `output`s
    // value is returned in `result`. Otherwise returns false. An error status is
    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)
  2. tensorflow/c/c_api_experimental.h

    TF_CAPI_EXPORT extern TF_Tensor* TF_CheckpointReaderGetTensor(
        TF_CheckpointReader* reader, const char* name, TF_Status* status);
    
    // TF_NewAttrBuilder() returns an object that you can set attributes on as
    // though it were an op. This allows querying properties of that op for
    // type-checking purposes like if the op will run on a particular device type.
    typedef struct TF_AttrBuilder TF_AttrBuilder;
    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. .bazelrc

    # release while SASS is only forward compatible inside the current
    # major release. Example: sm_80 kernels can run on sm_89 GPUs but
    # not on sm_90 GPUs. compute_80 kernels though can also run on sm_90 GPUs.
    build:cuda_clang --repo_env=TF_CUDA_COMPUTE_CAPABILITIES="sm_60,sm_70,sm_80,sm_89,compute_90"
    
    # Set up compilation CUDA version and paths and use the CUDA Clang toolchain.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_registration.cc

    //   * allows having newer plugins than the current core TensorFlow: the
    //     additional entries in the plugin's table are just discarded;
    //   * allows having older plugins than the current core TensorFlow (though
    //     we are still warning users): the entries that core TensorFlow expects
    //     but plugins didn't provide will be set to `nullptr` values and core
    //     TensorFlow will know to not call these on behalf of users;
    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)
  5. RELEASE.md

            TensorFlow.
    
    *   `tf.experimental.dtensor`: Added DTensor, an extension to TensorFlow for
        large-scale modeling with minimal changes to user code. You are welcome to
        try it out, though be aware that the DTensor API is experimental and up-to
        backward-incompatible changes. DTensor and Keras integration is published
        under `tf.keras.dtensor` in this release (refer to the `tf.keras` entry).
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
Back to top