LD_LIBRARY_PATH
environment variable set?
@rp98njit I created a bare bones conda environment to run the install in and make sure everything is functional. Here is the list of packages that need to be installed using conda before make install-arrow
will run.
Please let me know if it gives you any additional problems after installing the packages listed above.
addEntry problem.
In my tests for a large graph amazon0601.txt, the st.addEntry function will be blocked somewhere after giving the following information
"2022-06-18:11:58:59 [ServerConfig] overMemLimit Line 202 INFO [Chapel] memory high watermark = 267023064 memory limit = 486862464614"
No error information is given. It seems that it enters into an infinite loop.
For small graphs, everything is good.
Any suggestions on solving this problem? Thanks!
When I use the following configuration to compile chapel
export CHPL_COMM=gasnet
export CHPL_COMM_SUBSTRATE=udp
export CHPL_LAUNCHER= amudprun
And use the following script to submit the job
PortNum=5555
numNodes=2
temp=scontrol show hostname | paste -d, -s
export SSH_SERVERS=$temp
export LD_LIBRARY_PATH=$HOME/anaconda3/lib:${LD_LIBRARY_PATH}
It gives me an error
under $HOME/anaconda3/lib we have the libthrift.so.0.15.0
Why export LD_LIBRARY_PATH=$HOME/anaconda3/lib:${LD_LIBRARY_PATH} does not work?
Can anyone tell me the reason? Thanks!