From a33bec47f77c8c434df454b77d64990ef6eec0e1 Mon Sep 17 00:00:00 2001
From: David Chamont <chamont@in2p3.fr>
Date: Thu, 20 Jun 2024 15:55:48 +0200
Subject: [PATCH] I prefer to see anything.

---
 CheckOneApiCpu/cmake.bash    |  1 -
 CheckOneApiCpu/make.bash     |  1 -
 CheckOneApiCpu/run.bash      |  1 -
 CheckOneApiCpu/sycl-ls.bash  |  1 -
 CheckOneApiCuda/cmake.bash   |  1 -
 CheckOneApiCuda/make.bash    |  1 -
 CheckOneApiCuda/run.bash     |  1 -
 CheckOneApiCuda/sycl-ls.bash |  1 -
 README.md                    | 39 ++++++++++++++++--------------------
 9 files changed, 17 insertions(+), 30 deletions(-)

diff --git a/CheckOneApiCpu/cmake.bash b/CheckOneApiCpu/cmake.bash
index 23475ec..1011ab4 100755
--- a/CheckOneApiCpu/cmake.bash
+++ b/CheckOneApiCpu/cmake.bash
@@ -1,5 +1,4 @@
 #!/usr/bin/env bash
-clear
 rm -rf build
 mkdir -p build
 cd build
diff --git a/CheckOneApiCpu/make.bash b/CheckOneApiCpu/make.bash
index 1fad9c1..ed6a6fc 100755
--- a/CheckOneApiCpu/make.bash
+++ b/CheckOneApiCpu/make.bash
@@ -1,4 +1,3 @@
 #!/usr/bin/env bash
-clear
 cd build
 make all
diff --git a/CheckOneApiCpu/run.bash b/CheckOneApiCpu/run.bash
index ad7cd2a..b17e5f3 100755
--- a/CheckOneApiCpu/run.bash
+++ b/CheckOneApiCpu/run.bash
@@ -1,3 +1,2 @@
 #!/usr/bin/env bash
-clear
 ./build/main.exe 1
diff --git a/CheckOneApiCpu/sycl-ls.bash b/CheckOneApiCpu/sycl-ls.bash
index 2fd631a..978fdc2 100755
--- a/CheckOneApiCpu/sycl-ls.bash
+++ b/CheckOneApiCpu/sycl-ls.bash
@@ -1,3 +1,2 @@
 #!/usr/bin/env bash
-clear
 sycl-ls
diff --git a/CheckOneApiCuda/cmake.bash b/CheckOneApiCuda/cmake.bash
index 23475ec..1011ab4 100755
--- a/CheckOneApiCuda/cmake.bash
+++ b/CheckOneApiCuda/cmake.bash
@@ -1,5 +1,4 @@
 #!/usr/bin/env bash
-clear
 rm -rf build
 mkdir -p build
 cd build
diff --git a/CheckOneApiCuda/make.bash b/CheckOneApiCuda/make.bash
index 1fad9c1..ed6a6fc 100755
--- a/CheckOneApiCuda/make.bash
+++ b/CheckOneApiCuda/make.bash
@@ -1,4 +1,3 @@
 #!/usr/bin/env bash
-clear
 cd build
 make all
diff --git a/CheckOneApiCuda/run.bash b/CheckOneApiCuda/run.bash
index d554096..729fa99 100755
--- a/CheckOneApiCuda/run.bash
+++ b/CheckOneApiCuda/run.bash
@@ -1,3 +1,2 @@
 #!/usr/bin/env bash
-clear
 ./build/main.exe 2
diff --git a/CheckOneApiCuda/sycl-ls.bash b/CheckOneApiCuda/sycl-ls.bash
index 2fd631a..978fdc2 100755
--- a/CheckOneApiCuda/sycl-ls.bash
+++ b/CheckOneApiCuda/sycl-ls.bash
@@ -1,3 +1,2 @@
 #!/usr/bin/env bash
-clear
 sycl-ls
diff --git a/README.md b/README.md
index 3d4c90d..08cbc47 100644
--- a/README.md
+++ b/README.md
@@ -23,33 +23,28 @@ Because the default compilation options on Code Reckons only generate the code f
 
 ## Running on Intel DevCloud
 
-Provided you have asked for an account ahead of time, on the [Intel Tiber Developer Cloud for oneAPI](https://devcloud.intel.com/oneapi/home/), and made the Intel recommended local ssh installation, that is how you may run the demo `SquareBuffers` on an intel integrated GPU:
+Provided you have asked for an account ahead of time, on the [Intel Tiber Developer Cloud for oneAPI](https://devcloud.intel.com/oneapi/home/), and made the Intel recommended local ssh installation, that is how you may run the tests with `qsub`:
 
 ```
 ssh devcloud
-git clone https://gitlab.in2p3.fr/chamont/grayscottchallenge.git
-cd GrayScottChallenge
-qsub -l nodes=1:gpu:ppn=2 -d . cmake-oneapi.sh
-cd SquareBuffers
-qsub -l nodes=1:gpu:ppn=2 -d . make.sh
-qsub -l nodes=1:gpu:ppn=2 -d . run.sh
-qstat
-qdel ...
+git clone https://gitlab.in2p3.fr/CodeursIntensifs/grayscott/GrayScottSyclSetup.git
+
+# check CPU nodes
+cd GrayScottSyclSetup/CheckOneApiCpu
+qsub -l nodes=1:xeon:ppn=2 -d . sycl-ls.bash
+qsub -l nodes=1:xeon:ppn=2 -d . cmake.bash
+qsub -l nodes=1:xeon:ppn=2 -d . make.bash
+qsub -l nodes=1:xeon:ppn=2 -d . run.bash
+
+# Check GPU nodes
+cd ../GrayScottSyclSetup/CheckOneApiCuda
+qsub -l nodes=1:gpu:ppn=2 -d . sycl-ls.bash
+qsub -l nodes=1:gpu:ppn=2 -d . cmake.bash
+qsub -l nodes=1:gpu:ppn=2 -d . make.bash
+qsub -l nodes=1:gpu:ppn=2 -d . run.bash
 ```
 
-Or, if you prefer to run on cpu:
-
-```
-...
-qsub -l nodes=1:xeon:ppn=2 -d . cmake-oneapi.sh
-...
-qsub -l nodes=1:xeon:ppn=2 -d . make.sh
-qsub -l nodes=1:xeon:ppn=2 -d . run.sh
-...
-```
-
-## Using MUST conputing center
-
+One can check the status of current jobs with `qstat`, and remove them with `qdel`.
 
 ## Running Intel oneAPI with docker
 
-- 
GitLab