@@ -56,10 +56,10 @@ protected void TF_SetAttrType(OperationDescription desc, string attrName, TF_Dat
5656 protected void TF_SetAttrBool ( OperationDescription desc , string attrName , bool value )
5757 => c_api . TF_SetAttrBool ( desc , attrName , value ) ;
5858
59- protected TF_DataType TFE_TensorHandleDataType ( SafeTensorHandleHandle h )
59+ protected TF_DataType TFE_TensorHandleDataType ( SafeEagerTensorHandle h )
6060 => c_api . TFE_TensorHandleDataType ( h ) ;
6161
62- protected int TFE_TensorHandleNumDims ( SafeTensorHandleHandle h , SafeStatusHandle status )
62+ protected int TFE_TensorHandleNumDims ( SafeEagerTensorHandle h , SafeStatusHandle status )
6363 => c_api . TFE_TensorHandleNumDims ( h , status ) ;
6464
6565 protected TF_Code TF_GetCode ( Status s )
@@ -80,7 +80,7 @@ protected IntPtr TF_TensorData(SafeTensorHandle t)
8080 protected ulong TF_TensorByteSize ( SafeTensorHandle t )
8181 => c_api . TF_TensorByteSize ( t ) ;
8282
83- protected void TFE_OpAddInput ( SafeEagerOpHandle op , SafeTensorHandleHandle h , SafeStatusHandle status )
83+ protected void TFE_OpAddInput ( SafeEagerOpHandle op , SafeEagerTensorHandle h , SafeStatusHandle status )
8484 => c_api . TFE_OpAddInput ( op , h , status ) ;
8585
8686 protected void TFE_OpSetAttrType ( SafeEagerOpHandle op , string attr_name , TF_DataType value )
@@ -95,10 +95,10 @@ protected void TFE_OpSetAttrString(SafeEagerOpHandle op, string attr_name, strin
9595 protected SafeEagerOpHandle TFE_NewOp ( SafeContextHandle ctx , string op_or_function_name , SafeStatusHandle status )
9696 => c_api . TFE_NewOp ( ctx , op_or_function_name , status ) ;
9797
98- protected SafeTensorHandleHandle TFE_NewTensorHandle ( SafeTensorHandle t , SafeStatusHandle status )
98+ protected SafeEagerTensorHandle TFE_NewTensorHandle ( SafeTensorHandle t , SafeStatusHandle status )
9999 => c_api . TFE_NewTensorHandle ( t , status ) ;
100100
101- protected void TFE_Execute ( SafeEagerOpHandle op , SafeTensorHandleHandle [ ] retvals , out int num_retvals , SafeStatusHandle status )
101+ protected void TFE_Execute ( SafeEagerOpHandle op , SafeEagerTensorHandle [ ] retvals , out int num_retvals , SafeStatusHandle status )
102102 => c_api . TFE_Execute ( op , retvals , out num_retvals , status ) ;
103103
104104 protected SafeContextOptionsHandle TFE_NewContextOptions ( )
@@ -110,7 +110,7 @@ protected SafeContextHandle TFE_NewContext(SafeContextOptionsHandle opts, SafeSt
110110 protected int TFE_OpGetInputLength ( SafeEagerOpHandle op , string input_name , SafeStatusHandle status )
111111 => c_api . TFE_OpGetInputLength ( op , input_name , status ) ;
112112
113- protected int TFE_OpAddInputList ( SafeEagerOpHandle op , SafeTensorHandleHandle [ ] inputs , int num_inputs , SafeStatusHandle status )
113+ protected int TFE_OpAddInputList ( SafeEagerOpHandle op , SafeEagerTensorHandle [ ] inputs , int num_inputs , SafeStatusHandle status )
114114 => c_api . TFE_OpAddInputList ( op , inputs , num_inputs , status ) ;
115115
116116 protected int TFE_OpGetOutputLength ( SafeEagerOpHandle op , string input_name , SafeStatusHandle status )
@@ -125,13 +125,13 @@ protected SafeExecutorHandle TFE_ContextGetExecutorForThread(SafeContextHandle c
125125 protected void TFE_ExecutorWaitForAllPendingNodes ( SafeExecutorHandle executor , SafeStatusHandle status )
126126 => c_api . TFE_ExecutorWaitForAllPendingNodes ( executor , status ) ;
127127
128- protected SafeTensorHandle TFE_TensorHandleResolve ( SafeTensorHandleHandle h , SafeStatusHandle status )
128+ protected SafeTensorHandle TFE_TensorHandleResolve ( SafeEagerTensorHandle h , SafeStatusHandle status )
129129 => c_api . TFE_TensorHandleResolve ( h , status ) ;
130130
131- protected string TFE_TensorHandleDeviceName ( SafeTensorHandleHandle h , SafeStatusHandle status )
131+ protected string TFE_TensorHandleDeviceName ( SafeEagerTensorHandle h , SafeStatusHandle status )
132132 => c_api . StringPiece ( c_api . TFE_TensorHandleDeviceName ( h , status ) ) ;
133133
134- protected string TFE_TensorHandleBackingDeviceName ( SafeTensorHandleHandle h , SafeStatusHandle status )
134+ protected string TFE_TensorHandleBackingDeviceName ( SafeEagerTensorHandle h , SafeStatusHandle status )
135135 => c_api . StringPiece ( c_api . TFE_TensorHandleBackingDeviceName ( h , status ) ) ;
136136
137137 protected SafeDeviceListHandle TFE_ContextListDevices ( SafeContextHandle ctx , SafeStatusHandle status )
@@ -146,7 +146,7 @@ protected string TF_DeviceListType(SafeDeviceListHandle list, int index, SafeSta
146146 protected string TF_DeviceListName ( SafeDeviceListHandle list , int index , SafeStatusHandle status )
147147 => c_api . TF_DeviceListName ( list , index , status ) ;
148148
149- protected SafeTensorHandleHandle TFE_TensorHandleCopyToDevice ( SafeTensorHandleHandle h , SafeContextHandle ctx , string device_name , SafeStatusHandle status )
149+ protected SafeEagerTensorHandle TFE_TensorHandleCopyToDevice ( SafeEagerTensorHandle h , SafeContextHandle ctx , string device_name , SafeStatusHandle status )
150150 => c_api . TFE_TensorHandleCopyToDevice ( h , ctx , device_name , status ) ;
151151
152152 protected void TFE_OpSetDevice ( SafeEagerOpHandle op , string device_name , SafeStatusHandle status )
0 commit comments