uct_md.c:203 UCX ERROR #338
-
Dear SSCHA developers, I'm a new SSCHA user. I'm doing a Au example on SSCHA website "[Tutorial 01 - First Simulations (https://sscha.eu/Tutorials/tutorial_01_first_simulations/)". [1717677221.254829] [n27:162451:0] uct_md.c:203 UCX ERROR Transport 'lx5' does not exist I wonder why these erros appear. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 35 replies
-
Hi Lin, This is the first time I have seen these errors, and we need more details to understand what went wrong. |
Beta Was this translation helpful? Give feedback.
-
Mr.
I find that I perform the commond "pip install cellconstructor python-sscha tdscha" when I install SSCHA. |
Beta Was this translation helpful? Give feedback.
-
@mesonepigreco |
Beta Was this translation helpful? Give feedback.
-
@mesonepigreco and @diegomartinez2 This script "ensenmble.py" is as follows: import cellconstructor as CC, cellconstructor.Phonons
import sscha, sscha.Ensemble
import numpy as np
# Fix the seed so that we all generate the same ensemble
np.random.seed(0)
# Load the dynamical matrix
dyn = CC.Phonons.Phonons("../ktao3_harmonic_dyn", nqirr=19)
dyn.Symmetrize()
#[ apply here the needed changes to dyn ]
# Prepare the ensemble
temperature = 300 # 300 K
ensemble = sscha.Ensemble.Ensemble(dyn, temperature)
# Generate the ensemble
number_of_configurations = 10
ensemble.generate(number_of_configurations)
# Save the ensemble into a directory
save_directory = "data"
population_id = 1
ensemble.save(save_directory, population_id) |
Beta Was this translation helpful? Give feedback.
Are you submitting the job in parallel?
The error here is from matplotlib, as unveiled from the last lines of your error:
You can manually remove the file, it says. Indeed, if you run the job in parallel, it is possible that multiple process created that file, thus leading to the error. This should not occur, but it is most likely due to an error of how MPI is configured.
Try removing that file…