diff --git a/Makefile b/Makefile index 05a0fae2cb1c408c3d2f5e1e2b01d4d1422b9e13..e70e41420219d7d37bfba41bc9213145da47b346 100644 --- a/Makefile +++ b/Makefile @@ -73,10 +73,10 @@ $(EMPER_ROOT)/build-vanilla: $(EMPER_ROOT)/build-no-sleep: $(MESON_SETUP) $(COMMON_EMPER_MESON_ARGS) $(EMPER_NO_SLEEP) $@ $(@D) -$(EMPER_ROOT)/build-no-sleep-stealing: +$(EMPER_ROOT)/build-stealing-no-sleep: $(MESON_SETUP) $(COMMON_EMPER_MESON_ARGS) $(EMPER_NO_SLEEP) $(EMPER_IO_STEALING) $@ $(@D) -$(EMPER_ROOT)/build-no-sleep-stealing-lockless: +$(EMPER_ROOT)/build-stealing-lockless-no-sleep: $(MESON_SETUP) $(COMMON_EMPER_MESON_ARGS) $(EMPER_NO_SLEEP) \ $(EMPER_IO_STEALING) $(EMPER_IO_LOCKLESS_CQ) $@ $(@D) diff --git a/eval.py b/eval.py index 216d97b65ecef89a1358f4464aef300765fb4b24..811b7156b990bd8b91fde260beb99629fe0d3355 100755 --- a/eval.py +++ b/eval.py @@ -36,8 +36,8 @@ EMPER_VARIANTS: dict[str, dict[str, str]] = { 'vanilla': {}, 'greedy-sem': {}, 'no-sleep': {}, - 'no-sleep-stealing': {}, - 'no-sleep-stealing-lockless': {}, + 'stealing-no-sleep': {}, + 'stealing-lockless-no-sleep': {}, 'pipe': {}, 'pipe-no-hint': {}, 'pipe-no-comp': {},