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
Currently the singularity job type relies in singularity exec command.
I think this is the most general solution, but as singularity allows to hide some complexity using singularity run command, I think we should think in a way to add this feature to the orchestrator.
Most interesting option of this command is --app. You can use this option to package several applications or executables in a containers and used them easily.
E.g.
$ singularity run --app salome hifimagnet.simg micadfile.cad mimeshfile.mesh
$ singularity run --app solver hifimagnet.simg mimeshfile.mesh miresult.res
$ singularity run --app paraview hifimagnet.simg miresult.res
...
The text was updated successfully, but these errors were encountered:
Currently the singularity job type relies in
singularity exec
command.I think this is the most general solution, but as singularity allows to hide some complexity using
singularity run
command, I think we should think in a way to add this feature to the orchestrator.Most interesting option of this command is
--app
. You can use this option to package several applications or executables in a containers and used them easily.E.g.
The text was updated successfully, but these errors were encountered: