diff --git a/bin/donkey.sbatch b/bin/donkey.sbatch
index c16dc28d01e802e615b56da8378b6679392e6302..77ed2ecf510b1b381ad30653181aae2f35b0e8f2 100755
--- a/bin/donkey.sbatch
+++ b/bin/donkey.sbatch
@@ -4,16 +4,8 @@
 # Remember to set the working directory of this script through
 # sbatch -D <workdir>
 
-# Load modules
-ml gcc/6.2
-ml tbb
-ml intelmpi
-ml openblas
-ml metis
-ml suitesparse
-
 # Set a name for the job
-#SBATCH -J poisson_dg
+#SBATCH -J poisson_dg_tensor
 
 # Number of processes
 #SBATCH -n 32
@@ -24,6 +16,14 @@ ml suitesparse
 # Each process needs two PUs: circumvent hyperthreading
 #SBATCH -c 2
 
+# Load modules
+ml gcc/7.3.0
+ml openmpi
+ml openblas
+ml metis
+ml superlu
+ml suite-sparse
+
 # Pin processes to cores
 # (Possible values: socket, core)
 SRUNOPT="--cpu_bind=verbose,core"