Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tapasco
tapasco
Commits
5d081bae
Commit
5d081bae
authored
Feb 08, 2018
by
Jens Korinth
Browse files
Fix bug in optimization level passing from parser
parent
47bb3dad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/scala/tapasco/jobs/executors/Import.scala
View file @
5d081bae
...
...
@@ -51,7 +51,7 @@ object Import extends Executor[ImportJob] {
val
tasks
=
jobs
map
{
case
(
j
,
t
)
=>
val
avgCC
=
FileAssetManager
.
reports
.
cosimReport
(
VLNV
.
fromZip
(
j
.
zipFile
).
name
,
t
)
map
(
_
.
latency
.
avg
)
new
ImportTask
(
j
.
zipFile
,
t
,
j
.
id
,
_
=>
signal
.
release
(),
avgCC
,
j
.
skipEvaluation
,
None
,
2
)(
cfg
)
new
ImportTask
(
j
.
zipFile
,
t
,
j
.
id
,
_
=>
signal
.
release
(),
avgCC
,
j
.
skipEvaluation
,
None
,
j
.
optimization
)(
cfg
)
}
tasks
foreach
{
tsk
.
apply
_
}
...
...
Jens Korinth
@jk
mentioned in commit
786777b1
·
Feb 23, 2018
mentioned in commit
786777b1
mentioned in commit 786777b12cd7d84cb7b8fba48a52dd5d8f322840
Toggle commit list
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