@@ -122,7 +122,7 @@ enum FullTypeId {
122122 // TFT_TENSOR[TFT_INT32, TFT_UNKNOWN]
123123 // is a Tensor of int32 element type and unknown shape.
124124 //
125- // TODO: Define TFT_SHAPE and add more examples.
125+ // TODO(mdan) : Define TFT_SHAPE and add more examples.
126126 TFT_TENSOR = 1000 ;
127127
128128 // Array (or tensorflow::TensorList in the variant type registry).
@@ -178,7 +178,7 @@ enum FullTypeId {
178178 // object (for now).
179179
180180 // The bool element type.
181- // TODO
181+ // TODO(mdan): Quantized types, legacy representations (e.g. ref)
182182 TFT_BOOL = 200 ;
183183 // Integer element types.
184184 TFT_UINT8 = 201 ;
@@ -195,7 +195,7 @@ enum FullTypeId {
195195 TFT_DOUBLE = 211 ;
196196 TFT_BFLOAT16 = 215 ;
197197 // Complex element types.
198- // TODO: Represent as TFT_COMPLEX[TFT_DOUBLE] instead?
198+ // TODO(mdan) : Represent as TFT_COMPLEX[TFT_DOUBLE] instead?
199199 TFT_COMPLEX64 = 212 ;
200200 TFT_COMPLEX128 = 213 ;
201201 // The string element type.
@@ -240,7 +240,7 @@ enum FullTypeId {
240240 // ownership is in the true sense: "the op argument representing the lock is
241241 // available".
242242 // Mutex locks are the dynamic counterpart of control dependencies.
243- // TODO: Properly document this thing.
243+ // TODO(mdan) : Properly document this thing.
244244 //
245245 // Parametrization: TFT_MUTEX_LOCK[].
246246 TFT_MUTEX_LOCK = 10202 ;
@@ -271,6 +271,6 @@ message FullTypeDef {
271271 oneof attr {
272272 string s = 3 ;
273273 int64 i = 4 ;
274- // TODO: list/tensor, map? Need to reconcile with TFT_RECORD, etc.
274+ // TODO(mdan) : list/tensor, map? Need to reconcile with TFT_RECORD, etc.
275275 }
276276}
0 commit comments