From d22f42cf622c7c01577e1c0c9269666966d3f524 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flow@cs.fau.de>
Date: Sat, 5 Mar 2022 10:08:36 +0100
Subject: [PATCH] Slightly rename EMPER: s/Extensible/Efficient/

While extensibility is still a feature of EMPER, a more important
aspect is its efficiency.
---
 README.md       | 2 +-
 emper/Emper.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index aa7414bd..2ecabcae 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # EMPER
 
-The Extensible Massive-Parallelism Execution Realm (EMPER) is a concurrency platform to develop and execute parallel applications.
+The Efficient Massive-Parallelism Execution Realm (EMPER) is a concurrency platform to develop and execute parallel applications.
 
 EMPER's primary objective is to support the research of different aspects of parallel execution of a potentially massive amount of concurrent strands of execution on current and future many-core systems.
 Those aspects include, for example, scheduling strategies, synchronization primitives, and ultimately the overall coordination of concurrent strands of execution concerning optimal resource usage, including locality and energy efficiency.
diff --git a/emper/Emper.cpp b/emper/Emper.cpp
index c696d9a2..9b8e29cf 100644
--- a/emper/Emper.cpp
+++ b/emper/Emper.cpp
@@ -117,7 +117,7 @@ auto operator>>(std::istream& in, ContinuationStealingMadviseStack& cont_stealin
 
 void printInfo(std::ostream& strm) {
 	// clang-format off
-	strm << std::boolalpha << "Extensible Massive-Parallelism Execution Realm (EMPER)" << std::endl
+	strm << std::boolalpha << "Efficient Massive-Parallelism Execution Realm (EMPER)" << std::endl
 			 << "Version: " << getFullVersion() << std::endl
 			 << "Debug: " << DEBUG << std::endl
 			 << "IO: " << IO << std::endl
-- 
GitLab