HomeSort by relevance Sort by last modified time
    Searched defs:TFE_TensorHandle (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/c/eager/
c_api.h 113 // Like a TF_Tensor, a TFE_TensorHandle refers to a tensor with a value, shape,
114 // type etc. Unlike a TF_Tensor, a TFE_TensorHandle may refer to such tensors
116 typedef struct TFE_TensorHandle TFE_TensorHandle;
118 TF_CAPI_EXPORT extern TFE_TensorHandle* TFE_NewTensorHandle(TF_Tensor* t,
120 TF_CAPI_EXPORT extern void TFE_DeleteTensorHandle(TFE_TensorHandle* h);
121 TF_CAPI_EXPORT extern TF_DataType TFE_TensorHandleDataType(TFE_TensorHandle* h);
122 TF_CAPI_EXPORT extern int TFE_TensorHandleNumDims(TFE_TensorHandle* h);
123 TF_CAPI_EXPORT extern int64_t TFE_TensorHandleDim(TFE_TensorHandle* h,
126 TFE_TensorHandle* h)
    [all...]
c_api_internal.h 93 struct TFE_TensorHandle {
94 TFE_TensorHandle(const tensorflow::Tensor& t, tensorflow::Device* d)
101 // This can be done if TFE_NewOp() and the TFE_TensorHandle constructors are
105 // TFE_TensorHandle does not outlive the TFE_Context from which it came?

Completed in 59 milliseconds