-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.conf
33 lines (23 loc) · 925 Bytes
/
config.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
### populate these variables with absolute paths
SPARK_HOME=/path/to/spark-3.4.0-bin-hadoop3-scala2.13
GRB_INSTALL_PATH=/path/to/ALP/install
LPF_INSTALL_PATH=/path/to/LPF/install
# LPF engine to use within ALP; change to 'ibverbs' to use InfiniBand
LPF_ENGINE=mpimsg
# the following settings are for distributed execution, using ALP hybrid backend
# if this is the configuration you wish to use, no change is needed
### choose the backend to compile for
GRB_BACKEND=hybrid
# GRB_BACKEND=reference_omp
### choose the library associated to the backend you compiled for (goes one-to-one with previous choice)
# library for hybrid backend
GRB_BACKEND_LIB=hybrid
# library for reference_omp backend
# GRB_BACKEND_LIB=sequential
### commands for Makefile (usually you don't need to change them)
# the Scala compiler
SCALAC=scalac
# the Java compiler
JAVAC=javac
# the JVM executable (default is the system JVM)
JAVA=java