We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1936f7e commit da61f44Copy full SHA for da61f44
1 file changed
deepmd/utils/summary.py
@@ -47,11 +47,11 @@ class SummaryPrinter(ABC):
47
)
48
49
BUILD: ClassVar = {
50
- "Installed To": "\n".join(deepmd.__path__),
+ "Installed to": "\n".join(deepmd.__path__),
51
"Source": GLOBAL_CONFIG["git_summ"],
52
"Source Branch": GLOBAL_CONFIG["git_branch"],
53
"Source Commit": GLOBAL_CONFIG["git_hash"],
54
- "Source Commit At": GLOBAL_CONFIG["git_date"],
+ "Source Commit at": GLOBAL_CONFIG["git_date"],
55
"Float Precision": global_float_prec.capitalize(),
56
"Build Variant": GLOBAL_CONFIG["dp_variant"].upper(),
57
}
@@ -70,7 +70,7 @@ def __call__(self) -> None:
70
71
build_info.update(
72
{
73
- "Running On": nodename,
+ "Running on": nodename,
74
"Computing Device": self.get_compute_device().upper(),
75
76
0 commit comments