mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-06-25 06:52:46 +00:00
10 lines
231 B
Python
10 lines
231 B
Python
import torch
|
|
|
|
|
|
def _format_number(val, prec=5):
|
|
if isinstance(val, float):
|
|
return f'{val:.{prec}g}'
|
|
elif torch.is_tensor(val) and torch.is_floating_point(val):
|
|
return f'{val.item():.{prec}g}'
|
|
return val
|