We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4bbb0 commit 8c42acbCopy full SHA for 8c42acb
submit.sh
@@ -41,6 +41,18 @@ function is_in_array
41
return $in
42
}
43
44
+###########################################
45
+# Check that the right modules are loaded #
46
47
+if ! type "pgcc" > /dev/null 2>&1; then \
48
+ clear; \
49
+ echo -e "\n . "; \
50
+ echo -e " / \\"; \
51
+ echo -e " / ! \\ It looks like the PGI compiler is not loaded."; \
52
+ echo -e " /_____\\ On Bridges please issue 'module load cuda/9.2 mpi/pgi_openmpi/19.4-nongpu'. You can now make again :)\n"; \
53
+ exit -1; \
54
+fi
55
+
56
######################
57
# Display quick help #
58
0 commit comments