Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_GetGraphDefVersion (0.35 sec)

  1. tensorflow/c/kernels.h

    TF_CAPI_EXPORT TF_RendezvousThunk TF_GetRendezvous(TF_OpKernelContext* ctx);
    #endif
    
    // Returns the graph def version of the given context.
    TF_CAPI_EXPORT extern int TF_GetGraphDefVersion(TF_OpKernelContext* ctx);
    
    // Returns the name of the OpKernel.
    //
    // The returned TF_StringView's underlying string is owned by the OpKernel and
    // has the same lifetime as the OpKernel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.cc

      }
      return ret;
    }
    
    uint64_t TF_GetFrameId(TF_OpKernelContext* ctx) {
      return reinterpret_cast<::tensorflow::OpKernelContext*>(ctx)
          ->frame_iter()
          .frame_id;
    }
    
    int TF_GetGraphDefVersion(TF_OpKernelContext* ctx) {
      return reinterpret_cast<::tensorflow::OpKernelContext*>(ctx)
          ->function_library()
          ->graph_def_version();
    }
    
    int64_t TF_GetIterId(TF_OpKernelContext* ctx) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top