Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for uint64Ptr (0.07 sec)

  1. docs/debugging/xattr/main.go

    1. }
    2.  
    3. func main() {
    4. flag.StringVar(&path, "path", "", "path name where the attribute shall be applied")
    5. flag.StringVar(&name, "name", "", "attribute name or it can be a wildcard if '.' is specified")
    6. flag.Uint64Var(&value, "value", 0, "attribute value expects the value to be uint64")
    7. flag.BoolVar(&set, "set", false, "this is a set attribute operation")
    8.  
    9. flag.Parse()
    10.  
    11. if set && value == 0 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.cc

    1. tensorflow::unwrap(ctx)->SetShouldStoreGraphs(true);
    2. }
    3.  
    4. void TFE_ContextDisableGraphCollection(TFE_Context* ctx) {
    5. tensorflow::unwrap(ctx)->SetShouldStoreGraphs(false);
    6. }
    7.  
    8. uint64_t TFE_GetContextId(TFE_Context* ctx) {
    9. tensorflow::EagerContext* context =
    10. tensorflow::ContextFromInterface(tensorflow::unwrap(ctx));
    11. return context->GetContextId();
    12. }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api_experimental.h

    1. // is initialized (either locally or remotely). The context_id can change during
    2. // the process lifetime although this should cause the worker to be
    3. // reinitialized (e.g. cleared caches) as well.
    4. TF_CAPI_EXPORT extern uint64_t TFE_GetContextId(TFE_Context* ctx);
    5.  
    6. // -----------------------------------------------------------------------------
    7. // Cancellation APIs.
    8.  
    9. typedef struct TFE_CancellationManager TFE_CancellationManager;
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    1. // Retrieve the incarnation number of a given device.
    2. //
    3. // If index is out of bounds, an error code will be set in the status object,
    4. // and 0 will be returned.
    5. TF_CAPI_EXPORT extern uint64_t TF_DeviceListIncarnation(
    6. const TF_DeviceList* list, int index, TF_Status* status);
    7.  
    8. // --------------------------------------------------------------------------
    9. // Load plugins containing custom ops and kernels
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    1. TF_DEVICELIST_METHOD(const char*, TF_DeviceListType, device_type().c_str(),
    2. nullptr);
    3. TF_DEVICELIST_METHOD(int64_t, TF_DeviceListMemoryBytes, memory_limit(), -1);
    4. TF_DEVICELIST_METHOD(uint64_t, TF_DeviceListIncarnation, incarnation(), 0);
    5.  
    6. #undef TF_DEVICELIST_METHOD
    7.  
    8. } // end extern "C"
    9.  
    10. // --------------------------------------------------------------------------
    11. // New Graph and Session API
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top