From 3cbec62f2776b157ae0014d4942e63c840013ab3 Mon Sep 17 00:00:00 2001
From: Daniel M <daniel.q.mueller@stud.h-da.de>
Date: Fri, 11 Nov 2022 22:10:38 +0100
Subject: [PATCH] Add README & make clean

---
 Makefile  | 4 ++++
 README.md | 4 ++++
 2 files changed, 8 insertions(+)
 create mode 100644 README.md

diff --git a/Makefile b/Makefile
index d6e10f8..eeb03c3 100644
--- a/Makefile
+++ b/Makefile
@@ -3,3 +3,7 @@ test.out: test.o
 
 test.o: test.cpp
 	g++ -Wall -pthread -O3 -c $<
+
+.PHONY: clean
+clean:
+	rm *.o *.out
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e0ca0d4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+# GSI Slurm CPU scaling test
+
+This project is intended to be used for debugging the CPU allocation / scheduling on the GSI 
+compute nodes while scaling the number of threads using `srun -n 1 -c $NUM_THREADS -- ./test $NUM_THREADS`
\ No newline at end of file
-- 
GitLab