Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for investigate (0.24 sec)

  1. tensorflow/c/c_api_experimental.h

    TF_CAPI_EXPORT extern void TF_MakeInternalErrorStatus(TF_Status* status,
                                                          const char* errMsg);
    
    // TF_NewCheckpointReader() return the CheckpointReader that can be use to
    // investigate or load the variable from the checkpoint file
    typedef struct TF_CheckpointReader TF_CheckpointReader;
    TF_CAPI_EXPORT extern TF_CheckpointReader* TF_NewCheckpointReader(
        const char* filename, TF_Status* status);
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      TF_DeleteStatus(status);
    #endif  // PLATFORM_WINDOWS
    }
    TEST(CAPI, ExecuteAdd) {
      ExecuteAdd(
          /*async=*/false,
          /*forward_input*/ false,
          /*tfrt*/ false);
    }
    // TODO(b/234067483): Investigate flakiness and re-enable.
    TEST(CAPI, DISABLED_ExecuteAddAsync) {
      ExecuteAdd(
          /*async=*/true,
          /*forward_input*/ false,
          /*tfrt*/ false);
    }
    TEST(CAPI, ExecuteAddForward) {
      ExecuteAdd(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  3. configure.py

      cleanup_makefile()
      setup_python(environ_cp)
    
      if is_windows():
        environ_cp['TF_NEED_OPENCL'] = '0'
        environ_cp['TF_CUDA_CLANG'] = '0'
        # TODO(ibiryukov): Investigate using clang as a cpu or cuda compiler on
        # Windows.
        environ_cp['TF_DOWNLOAD_CLANG'] = '0'
        environ_cp['TF_NEED_MPI'] = '0'
    
      if is_macos():
        environ_cp['TF_NEED_TENSORRT'] = '0'
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  4. RELEASE.md

                information about the incompatible ops.
        *   Add lite.experimental.Analyzer API
            *   An experimental tool to analyze TFLite flatbuffer models. This API
                can be used to investigate TFLite model structure and check
                compatibility with GPU delegate.
    
    *   Extension Types
    
        *   Add experimental API to define new Python classes that can be handled by
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top