Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/loadbalancing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fi
exec java \
-classpath "$ESALSA_HOME/lib/"'*' \
-Dlog4j.configuration=file:"$IPL_HOME"/log4j.properties \
-Dorg.slf4j.simpleLogger.defaultLogLevel=TRACE \
nl.esciencecenter.esalsa.tools.LoadBalancing \
"$@"

17 changes: 17 additions & 0 deletions scripts/optimize.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/sh

# This script is a convenience script to automatically set the correct
# classpath for the eSalsa Tools given the location of an installation
# specified in the $ESALSA_HOME environment variable.

# Check setting of ESALSA_HOME
if [ -z "$ESALSA_HOME" ]; then
echo "please set ESALSA_HOME to the location of your eSalsa Tools installation" 1>&2
exit 1
fi

exec java \
-classpath "$ESALSA_HOME/lib/"'*' \
nl.esciencecenter.esalsa.util.OptimizeTopography \
"$@"

Loading