Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Christopher Ferreira
erods-bench
Commits
60e8c7a6
Commit
60e8c7a6
authored
Jul 27, 2017
by
aumgn
Browse files
[exp] Add support for lu_cb & lu_ncb
parent
37f2077a
Changes
3
Show whitespace changes
Inline
Side-by-side
Makefile
View file @
60e8c7a6
...
...
@@ -28,7 +28,7 @@ wastedcores: submodules
cd
tools/wastedcores/tools/visualizations_4.1/sched_profiler
;
make
.PHONY
:
build-parsec
build-parsec
:
build-bodytrack build-streamcluster build-volrend
#
build-vips
build-parsec
:
build-bodytrack build-streamcluster build-volrend
build-lu_cb build-lu_ncb
#
build-vips
.PHONY
:
build-bodytrack
build-bodytrack
:
...
...
@@ -42,6 +42,14 @@ build-streamcluster:
build-volrend
:
$(PARSECMGMT)
-a
build
-p
splash2x.volrend
-c
gcc-pthreads
.PHONY
:
build-lu_cb
build-lu_cb
:
$(PARSECMGMT)
-a
build
-p
splash2x.lu_cb
-c
gcc-pthreads
.PHONY
:
build-lu_ncb
build-lu_ncb
:
$(PARSECMGMT)
-a
build
-p
splash2x.lu_ncb
-c
gcc-pthreads
.PHONY
:
build-vips
build-vips
:
$(PARSECMGMT)
-a
build
-p
parsec.vips
-c
gcc-pthreads
...
...
@@ -72,7 +80,7 @@ $(LIN_REG_INPUTS_ARCHIVE):
wget
$(LIN_REG_INPUTS_URL)
-O
$(LIN_REG_INPUTS_ARCHIVE)
.PHONY
:
clean-parsec
clean-parsec
:
clean-bodytrack clean-streamcluster clean-volrend clean-vips
clean-parsec
:
clean-bodytrack clean-streamcluster clean-volrend
clean-lu_cb clean-lu_ncb
#
clean-vips
.PHONY
:
clean-bodytrack
clean-bodytrack
:
...
...
@@ -86,6 +94,14 @@ clean-streamcluster:
clean-volrend
:
$(PARSECMGMT)
-a
uninstall
-p
splash2x.volrend
-c
gcc-pthreads
.PHONY
:
clean-lu_cb
clean-lu_cb
:
$(PARSECMGMT)
-a
uninstall
-p
splash2x.lu_cb
-c
gcc-pthreads
.PHONY
:
clean-lu_ncb
clean-lu_ncb
:
$(PARSECMGMT)
-a
uninstall
-p
splash2x.lu_ncb
-c
gcc-pthreads
.PHONY
:
clean-vips
clean-vips
:
$(PARSECMGMT)
-a
uninstall
-p
parsec.vips
-c
gcc-pthreads
...
...
exp/run.d/lu_cb.sh
0 → 100644
View file @
60e8c7a6
export
LU_CB_DIR
=
$PARSEC_DIR
/ext/splash2x/kernels/lu_cb
export
LU_CB_BIN
=
$LU_CB_DIR
/inst/amd64-linux.gcc-pthreads/bin/lu_cb
prepare_lu_cb
()
{
true
}
dump_lu_cb
()
{
sha1sum
$LU_CB_BIN
>>
$dump_program_dir
/lu_cb
}
command_lu_cb
()
{
echo
$cmd_prefix
$LU_CB_BIN
-p
$threads
-n8096
-b32
}
exp/run.d/lu_ncb.sh
0 → 100644
View file @
60e8c7a6
export
LU_NCB_DIR
=
$PARSEC_DIR
/ext/splash2x/kernels/lu_ncb
export
LU_NCB_BIN
=
$LU_NCB_DIR
/inst/amd64-linux.gcc-pthreads/bin/lu_ncb
prepare_lu_ncb
()
{
true
}
dump_lu_ncb
()
{
sha1sum
$LU_NCB_BIN
>>
$dump_program_dir
/lu_ncb
}
command_lu_ncb
()
{
echo
$cmd_prefix
$LU_NCB_BIN
-p
$threads
-n8096
-b32
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment