You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The job is not killed by the queue system, however, I don't see any output files generated by VASP (such as OUTCAR, OSZICAR etc).
In the directory 'calculator', I can only find those files,
ase-sort.dat INCAR KPOINTS POSCAR POTCAR socket-client.log
and socket-client.log is empty.
Is there anything wrong with my input?
BTW, I am using vasp6.3.2 without the patches,
Best,
Geng
The text was updated successfully, but these errors were encountered:
Hi @GengSS, your vasp-interactive calculator wasn't initialized as socket mode, there are additional keywords to enable the socket communication layer, see
Parameters for socket-I/O mode:
`use_socket`: if True, attach a socket client to the calculator and self.run() method
will be available. Note you don't need to set use_socket when passing through
SocketIOCalculator
`host`: hostname of the socket server running iPI protocol
`port`: server port to connect to
`unixsocket`: name of local unix socket
`timeout`: socket I/O timeout
`log`: logfile for the socket client. If None, write to stdout
You can try specifying unixsocket in your parameters dict to see if it could solve your issue.
In your case it seems normal usage of vasp-interactive would suffice, could you also give a try? If you have copied the parameters from ex16_socketio.py, I appologize for the confusion as there seems to be some missing parts, I'll fix the examples asap.
Hi @alchem0x2A ,
Thank you for your reply, but I tried to add the 'unixsocket' parameter to VaspInteractive, but it did not work.
I also tried to switch on the use_socket=True, but it still fails to run.
Could you please show me an example that uses unixsocket mode?
Thank you very much in advance.
Best Wishes,
Geng
Hello,
I am trying to use the socket mode to run vaspinteractive calculator,
Here is my input python script:
The job is not killed by the queue system, however, I don't see any output files generated by VASP (such as OUTCAR, OSZICAR etc).
In the directory 'calculator', I can only find those files,
ase-sort.dat INCAR KPOINTS POSCAR POTCAR socket-client.log
and socket-client.log is empty.
Is there anything wrong with my input?
BTW, I am using vasp6.3.2 without the patches,
Best,
Geng
The text was updated successfully, but these errors were encountered: