diff --git a/src/bin/frontendlauncher b/src/bin/frontendlauncher index d261bf4af3..8646bac98a 100755 --- a/src/bin/frontendlauncher +++ b/src/bin/frontendlauncher @@ -43,6 +43,9 @@ # Added logic to use system `python3` if `python` is not available. # (Installed use finds and calls our python, this helps with developer use) # +# Cyrus Harrison, Thu Dec 12 11:33:24 PST 2024 +# Added case for power9 architecture +# ############################################################################### # Determine VisIt architecture @@ -55,6 +58,8 @@ if test "$osname" = "Linux"; then platform="linux-ppc" elif test "$proc" = "ppc64"; then platform="linux-ppc64" + elif test "$proc" = "ppc64le"; then + platform="linux-ppc64le" else platform="linux-intel" fi diff --git a/src/resources/hosts/llnl/host_llnl_elcap.xml b/src/resources/hosts/llnl/host_llnl_elcap.xml new file mode 100755 index 0000000000..686f3a1ff6 --- /dev/null +++ b/src/resources/hosts/llnl/host_llnl_elcap.xml @@ -0,0 +1,101 @@ + + + LLNL El Capitan + elcap.llnl.gov + notset + elcap#.llnl.gov elcap##.llnl.gov elcap###.llnl.gov elcap####.llnl.gov elcap#####.llnl.gov elcap######.llnl.gov elcap# elcap## elcap### elcap#### elcap##### elcap###### + /usr/gapps/visit + false + false + 22 + false + "ssh" + false + + MachineName + + true + false + 1 + false + 1 + + serial + 480 + 1 + false + 0 + false + + false + + false + + false + + true + false + + false + + + parallel interactive pdebug + 480 + 96 + true + 1 + true + pdebug + false + + true + 3600s + true + flux/run + true + false + false + true + + + parallel batch + 480 + 96 + true + 1 + true + pbatch + false + + true + 3600s + true + flux/batch + true + false + false + + true + + + parallel xterm + 480 + 96 + false + 0 + false + + false + + false + + true + flux/run + true + false + false + + true + + 0 + diff --git a/src/resources/hosts/networks.json b/src/resources/hosts/networks.json index 42e165a16d..f3005e534f 100644 --- a/src/resources/hosts/networks.json +++ b/src/resources/hosts/networks.json @@ -149,6 +149,9 @@ { "name": "host_llnl_dane.xml" }, + { + "name": "host_llnl_elcap.xml" + }, { "name": "host_llnl_lassen.xml" },