Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TF_VALIDATE_NOT_NULL (0.14 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor.cc

        TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, unified_memory_deallocate);
      }
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, device_memory_usage);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, create_stream);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, destroy_stream);
      TF_VALIDATE_NOT_NULL(SP_StreamExecutor, se, create_stream_dependency);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.cc

      TF_VALIDATE_NOT_NULL(TF_ProfilerRegistrationParams, params, destroy_profiler);
      TF_VALIDATE_NOT_NULL(TF_ProfilerRegistrationParams, params,
                           destroy_profiler_fns);
      return OkStatus();
    }
    
    Status ValidateTPProfiler(const TP_Profiler& profiler) {
      TF_VALIDATE_STRUCT_SIZE(TP_Profiler, profiler, TP_PROFILER_STRUCT_SIZE);
      TF_VALIDATE_NOT_NULL(TP_Profiler, profiler, device_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_macros_internal.h

        }                                                                     \
      } while (0)
    
    // Macro to verify that the field NAME of STRUCT_OBJ is not null.
    #define TF_VALIDATE_NOT_NULL(STRUCT_NAME, STRUCT_OBJ, NAME)            \
      do {                                                                 \
        if (STRUCT_OBJ.NAME == 0) {                                        \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 13 17:40:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top