Hi,
I am a new user of AiiDa. After installing and verifying AiiDa, I tried to run given examples in:
But the workflows keep failing with the following error:
<554234> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [1873|PhononWorkChain|run_base_supercell]: launching base supercell scf PwBaseWorkChain<1881>
<554234> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [1881|PwBaseWorkChain|run_process]: launching PwCalculation<1884> iteration #1
<554234> aiida.parser.PwParser: [WARNING] key âsymmetriesâ is not present in raw output dictionary
<554234> aiida.parser.PwParser: [ERROR] ERROR_OUTPUT_STDOUT_INCOMPLETE
<554234> aiida.parser.PwParser: [ERROR] Both the stdout and XML output files could not be read or parsed.
<554234> aiida.orm.nodes.process.calculation.calcjob.CalcJobNode: [WARNING] output parser returned exit code<305>: Both the stdout and XML output files could not be read or parsed.
<554234> aiida.orm.nodes.process.workflow.workchain.WorkChainNode: [REPORT] [1881|PwBaseWorkChain|report_error_handled]: PwCalculation<1884> failed with exit status 305: Both the stdout and XML output files could not be read or parsed.
I checked my pw.x, with:
!verdi code show pw@localhost
I also checked the read and write permissions for the working directory. I also tried the following:
!aiida-pseudo install sssp -x PBEsol --download-only
!aiida-pseudo install sssp --from-download SSSP_1.3_PBEsol_efficiency.aiida_pseudo
These were all fine but the problem persists, here is an example of what I tried to run using Jupyterhub on remote HPC:
from aiida import load_profile
load_profile()
from aiida_quantumespresso.workflows.pw.bands import PwBandsWorkChain
from aiida.orm import *
from aiida.plugins import WorkflowFactory
from aiida.engine import run_get_node
from aiida_vibroscopy.workflows.phonons.base import PhononWorkChain, PhononProperty
Manually load the codes you need (pw.x and phonopy)
pw_code = load_code(âpw@localhostâ)
phonopy_code = load_code(âphonopy@localhostâ)
from aiida.plugins import DbImporterFactory
CodDbImporter = DbImporterFactory(âcore.codâ)
cod = CodDbImporter()
results = cod.query(id=â1526655â) # Si 1526655
structure = results[0].get_aiida_structure() # it has 8 atoms
from aiida_vibroscopy.common.properties import PhononProperty
PhononWorkChain = WorkflowFactory(âvibroscopy.phonons.phononâ)
builder = PhononWorkChain.get_builder_from_protocol(
pw_code=pw_code,
structure=structure,
protocol=âfastâ,
phonopy_code=phonopy_code,
phonon_property=PhononProperty.BANDS
)
builder.supercell_matrix = List([1,1,1])
results, calc = run_get_node(builder)
------------------------Here it failed with the above error---------------------<
I would appreciate it if you could help me solve this problem.
Thanks a lot in advance!
Vahid Jamebozorgi