-
Notifications
You must be signed in to change notification settings - Fork 13
4*. Setup GPU Server (Alternative)
Previous page: 3. Prepare Input Dataset | Next page: 5. Run Dorylus | Home: Home
If GPUs are available on graph servers, an alternative way of computation using GPU is provided.
Since the GPU Server program resides on the same machine as graph server program.
Additional packages are required: cudatoolkit >=10.0 cuDnn>=7.6
In some cases, you may need to change Environment Variables
include .../cuda/bin #cuda bin location in $PATH include .../cuda-10.0/lib64 #cuda lib location in $LD_LIBRARY_PATH
Use Graph$ ./gnnman/helpers/graphserver.bld gpu
to build Graph server program with GPU support.
Use Graph$ ./run/run-onnode graph <Dataset> gpu # For GPU version
to run GPU version.
export PATH=$PATH:/usr/local/cuda/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64
export LG_RT_DIR="$HOME/legion/runtime"
export CUDA=/usr/local/cuda
Previous page: 3. Prepare Input Dataset | Next page: 5. Run Dorylus | Home: Home