Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emper-fs-eval
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lehrstuhl für Informatik 4 (Systemsoftware)
manycore
emper-fs-eval
Commits
33cd9e4f
Commit
33cd9e4f
authored
3 years ago
by
Florian Fischer
Browse files
Options
Downloads
Patches
Plain Diff
add sqpoll variants
parent
a99a8c98
No related branches found
No related tags found
No related merge requests found
Pipeline
#66690
passed
3 years ago
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+20
-5
20 additions, 5 deletions
Makefile
eval.py
+7
-0
7 additions, 0 deletions
eval.py
with
27 additions
and
5 deletions
Makefile
+
20
−
5
View file @
33cd9e4f
...
@@ -6,7 +6,7 @@ MAKEFILES = $(shell dirname $(shell find . -name Makefile \
...
@@ -6,7 +6,7 @@ MAKEFILES = $(shell dirname $(shell find . -name Makefile \
-not
-path
"./haystack/*"
))
-not
-path
"./haystack/*"
))
EMPER_ROOT
:=
emper
EMPER_ROOT
:=
emper
EMPER_VARIANTS
:=
vanilla pipe pipe-no-completer no-completer
EMPER_VARIANTS
:=
vanilla pipe pipe-no-completer no-completer
sqpoll-single sqpoll
EMPER_PREP_TARGETS
:=
$(
addprefix
$(
EMPER_ROOT
)
/build-,
$(
EMPER_VARIANTS
))
EMPER_PREP_TARGETS
:=
$(
addprefix
$(
EMPER_ROOT
)
/build-,
$(
EMPER_VARIANTS
))
EMPER_BUILD_TARGETS
:=
$(
addprefix emper-,
$(
EMPER_VARIANTS
))
EMPER_BUILD_TARGETS
:=
$(
addprefix emper-,
$(
EMPER_VARIANTS
))
...
@@ -34,19 +34,34 @@ $(MAKEFILES):
...
@@ -34,19 +34,34 @@ $(MAKEFILES):
COMMON_EMPER_MESON_ARGS
:=
--buildtype
=
release
--fatal-meson-warnings
-Dstats
=
true
COMMON_EMPER_MESON_ARGS
:=
--buildtype
=
release
--fatal-meson-warnings
-Dstats
=
true
$(EMPER_ROOT)/build-vanilla
:
.PHONY
:
checkout-master
checkout-master
:
git
-C
$(
EMPER_ROOT
)
checkout master
.PHONY
:
checkout-sqpoll
checkout-sqpoll
:
muhq-remote
git
-C
$(
EMPER_ROOT
)
fetch origin merge-requests/210/head:sqpoll
&&
\
git
-C
$(
EMPER_ROOT
)
checkout sqpoll
$(EMPER_ROOT)/build-vanilla
:
checkout-master
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
$@
$(
EMPER_ROOT
)
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
$@
$(
EMPER_ROOT
)
$(EMPER_ROOT)/build-pipe
:
$(EMPER_ROOT)/build-pipe
:
checkout-master
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dworker_sleep_strategy
=
pipe
$@
$(
EMPER_ROOT
)
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dworker_sleep_strategy
=
pipe
$@
$(
EMPER_ROOT
)
$(EMPER_ROOT)/build-pipe-no-completer
:
$(EMPER_ROOT)/build-pipe-no-completer
:
checkout-master
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dio_completer_behavior
=
none
\
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dio_completer_behavior
=
none
\
-Dworker_sleep_strategy
=
pipe
$@
$(
EMPER_ROOT
)
-Dworker_sleep_strategy
=
pipe
$@
$(
EMPER_ROOT
)
$(EMPER_ROOT)/build-no-completer
:
$(EMPER_ROOT)/build-no-completer
:
checkout-master
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dio_completer_behavior
=
none
$@
$(
EMPER_ROOT
)
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dio_completer_behavior
=
none
$@
$(
EMPER_ROOT
)
$(EMPER_ROOT)/build-sqpoll
:
checkout-sqpoll
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dio_uring_sq_poller
=
each
$@
$(
EMPER_ROOT
)
$(EMPER_ROOT)/build-sqpoll-single
:
checkout-sqpoll
meson setup
$(
COMMON_EMPER_MESON_ARGS
)
-Dio_uring_sq_poller
=
one
$@
$(
EMPER_ROOT
)
define
buildEmper
define
buildEmper
emper-$(1)
:
$(EMPER_ROOT)/build-$(1)
emper-$(1)
:
$(EMPER_ROOT)/build-$(1)
...
...
This diff is collapsed.
Click to expand it.
eval.py
+
7
−
0
View file @
33cd9e4f
...
@@ -47,6 +47,13 @@ TARGETS = {
...
@@ -47,6 +47,13 @@ TARGETS = {
f
'
{
ROOT_DIR
}
/emper/build-pipe-no-completer/apps/fsearch/fsearch {{NEEDLE}}
'
,
f
'
{
ROOT_DIR
}
/emper/build-pipe-no-completer/apps/fsearch/fsearch {{NEEDLE}}
'
,
'
env
'
:
{
'
EMPER_WORKER_COUNT=12
'
}
'
env
'
:
{
'
EMPER_WORKER_COUNT=12
'
}
},
},
'
emper-sqpoll
'
:
{
'
cmd
'
:
f
'
{
ROOT_DIR
}
/emper/build-sqpoll/apps/fsearch/fsearch {{NEEDLE}}
'
},
'
emper-sqpoll-single
'
:
{
'
cmd
'
:
f
'
{
ROOT_DIR
}
/emper/build-sqpoll-single/apps/fsearch/fsearch {{NEEDLE}}
'
},
'
ripgrep
'
:
{
'
ripgrep
'
:
{
'
cmd
'
:
'
rg -l -F -uuu {NEEDLE} .
'
'
cmd
'
:
'
rg -l -F -uuu {NEEDLE} .
'
},
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment