@@ -122,7 +122,7 @@ enum FullTypeId {
122
122
// TFT_TENSOR[TFT_INT32, TFT_UNKNOWN]
123
123
// is a Tensor of int32 element type and unknown shape.
124
124
//
125
- // TODO: Define TFT_SHAPE and add more examples.
125
+ // TODO(mdan) : Define TFT_SHAPE and add more examples.
126
126
TFT_TENSOR = 1000 ;
127
127
128
128
// Array (or tensorflow::TensorList in the variant type registry).
@@ -178,7 +178,7 @@ enum FullTypeId {
178
178
// object (for now).
179
179
180
180
// The bool element type.
181
- // TODO
181
+ // TODO(mdan): Quantized types, legacy representations (e.g. ref)
182
182
TFT_BOOL = 200 ;
183
183
// Integer element types.
184
184
TFT_UINT8 = 201 ;
@@ -195,7 +195,7 @@ enum FullTypeId {
195
195
TFT_DOUBLE = 211 ;
196
196
TFT_BFLOAT16 = 215 ;
197
197
// Complex element types.
198
- // TODO: Represent as TFT_COMPLEX[TFT_DOUBLE] instead?
198
+ // TODO(mdan) : Represent as TFT_COMPLEX[TFT_DOUBLE] instead?
199
199
TFT_COMPLEX64 = 212 ;
200
200
TFT_COMPLEX128 = 213 ;
201
201
// The string element type.
@@ -240,7 +240,7 @@ enum FullTypeId {
240
240
// ownership is in the true sense: "the op argument representing the lock is
241
241
// available".
242
242
// Mutex locks are the dynamic counterpart of control dependencies.
243
- // TODO: Properly document this thing.
243
+ // TODO(mdan) : Properly document this thing.
244
244
//
245
245
// Parametrization: TFT_MUTEX_LOCK[].
246
246
TFT_MUTEX_LOCK = 10202 ;
@@ -271,6 +271,6 @@ message FullTypeDef {
271
271
oneof attr {
272
272
string s = 3 ;
273
273
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.
275
275
}
276
276
}
0 commit comments