| 810 | using tensorflow::getTF_OutputDebugString; |
| 811 | |
| 812 | TFE_TensorHandle* TFE_NewTensorHandleFromTFOutput(TF_Output t, |
| 813 | TF_DataType data_type) { |
| 814 | auto ret = new TFE_TensorHandle(t, data_type); |
| 815 | VLOG(1) << "Storing TFOutput " << getTF_OutputDebugString(t) |
| 816 | << " into tensor handle " << ret << " with internal handle " |
| 817 | << ret->handle; |
| 818 | return ret; |
| 819 | } |
| 820 | |
| 821 | unsigned char TFE_TensorHandleIsConcrete(TFE_TensorHandle* handle) { |
| 822 | assert(handle->handle != nullptr); |
no outgoing calls