ParseError: syntax error, unexpected 'include' (T_INCLUDE), expecting identifier (T_STRING) or '{'
More info is available in the error log.
jump to: Search / User Tools / Main Content / Change Content Width
Dokumentace ÚT AV ČR
You are here: start » en » computing » cluster » fronty » paraview
This is an old revision of the document!
Paraview is only installed on the cluster as pvserver for Server-Client connections.
NOTE: The versions of Paraview on the Server and Client side must be identical! Currently, version 5.10.1 is available on the cluster (Server) side (module “paraview/5.10.1-11.2.0”). This version can be freely downloaded for your computer (Client) at Paraview-download.
The SSH login must be done with graphics support, i.e. the -Y switch (Windows users, see. cluster/connections)
ssh -Y user@kraken
After loading the module
[user@kraken ~]$ ml paraview
pvserver can be started on the admin node
[user@kraken ~]$ srun -p NoCompute pvserver
even in parallel in the NoCompute queue directly from the command line
[user@kraken ~]$ srun -p NoCompute -n 4 pvserver
or by using the script for “sbatch”:
#!/bin/bash #SBATCH --job-name=Paraview_test #SBATCH --output=slurm_out.txt #SBATCH -p NoCompute #SBATCH -N 1 #SBATCH -n 4 ml paraview/5.10.1-11.2.0 srun pvserver
Parallel running greatly speeds up program response, up to 12 cores can be used with the NoCompute queue.