File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
userbenchmark/dynamo/dynamobench/_dynamo Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1269,6 +1269,15 @@ class CompilationMetrics:
1269
1269
python_version : Optional [str ] = None
1270
1270
pgo_put_remote_code_state_time_us : Optional [int ] = None
1271
1271
pgo_get_remote_code_state_time_us : Optional [int ] = None
1272
+ # The number of elements within parameters. This is classically what people
1273
+ # think of when they think of parameters in a ML model.
1274
+ param_numel : Optional [int ] = None
1275
+ # The number of elements counted by bytes - i.e. a float32 is 4 bytes
1276
+ # per element.
1277
+ param_bytes : Optional [int ] = None
1278
+ # The number of parameters counted by fields. This is mostly a proxy for
1279
+ # the number of distinct type of params.
1280
+ param_count : Optional [int ] = None
1272
1281
1273
1282
@classmethod
1274
1283
def create (cls , metrics : dict [str , Any ]):
You can’t perform that action at this time.
0 commit comments