MCPcopy Create free account
hub / github.com/AdaCompNUS/summit / compute_mean_std

Function compute_mean_std

PythonAPI/util/performance_benchmark.py:362–368  ·  view source on GitHub ↗
(list_values)

Source from the content-addressed store, hash-verified

360
361
362def compute_mean_std(list_values):
363 np_values = np.array(list_values)
364
365 mean = np.mean(np_values)
366 std = np.std(np_values)
367
368 return mean, std
369
370
371def serialize_records(records, system_specs, filename):

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected