File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ calculators which return a 3x3 matrix for stress will break. One can modify
1717ASE source for this as ASIMTools can't go into the calculator code.
1818- asim_check now also reports the job_ids
1919- get_atoms now allows addition of FixAtoms constraint
20+ - output.yaml now includes hostname
2021
2122### Changed
2223- VASP interface changed to align more with pymatgen
Original file line number Diff line number Diff line change 88import importlib
99import sys
1010import os
11+ import socket
1112from pathlib import Path
1213import argparse
1314import subprocess
@@ -165,6 +166,8 @@ def main(args=None) -> None:
165166 job_ids = os .getenv ('SLURM_JOB_ID' )
166167 results ['job_ids' ] = job_ids
167168
169+ results ['hostname' ] = socket .gethostname ()
170+
168171 job .update_output (results )
169172 job .complete ()
170173
You can’t perform that action at this time.
0 commit comments