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
ddd478c7
Commit
ddd478c7
authored
May 15, 2017
by
Jens Korinth
Browse files
Closes
#62
- DSE: Synthesis report is empty, but utilization.txt exists
* was in fact not implemented; fixed
parent
0bd0702f
Changes
1
Show whitespace changes
Inline
Side-by-side
src/main/scala/tapasco/activity/composers/VivadoComposer.scala
View file @
ddd478c7
...
...
@@ -85,8 +85,8 @@ class VivadoComposer()(implicit cfg: Configuration, maxThreads: Option[Int]) ext
if
(
files
.
tim
.
isEmpty
)
{
throw
new
Exception
(
"could not parse timing report: '%s'"
.
format
(
files
.
timFile
.
toString
))
}
else
{
Composer
.
Result
(
checkTimingFailure
(
files
),
Some
(
files
.
bitFile
.
toString
),
files
.
log
,
None
,
files
.
tim
,
files
.
pwr
)
Composer
.
Result
(
checkTimingFailure
(
files
),
Some
(
files
.
bitFile
.
toString
),
files
.
log
,
files
.
syn
,
files
.
tim
,
files
.
pwr
)
}
}
}
...
...
@@ -212,9 +212,11 @@ object VivadoComposer {
lazy
val
runName
:
String
=
"%s with %s[F=%1.3f]"
.
format
(
logformat
(
c
),
t
,
f
)
lazy
val
pwrFile
:
Path
=
logFile
.
resolveSibling
(
"power.txt"
)
lazy
val
timFile
:
Path
=
logFile
.
resolveSibling
(
"timing.txt"
)
lazy
val
synFile
:
Path
=
logFile
.
resolveSibling
(
"utilization.txt"
)
lazy
val
log
=
ComposerLog
(
logFile
)
lazy
val
pwr
=
PowerReport
(
pwrFile
)
lazy
val
tim
=
TimingReport
(
timFile
)
lazy
val
syn
=
SynthesisReport
(
synFile
)
}
/** custom ProcessIO: ignore everything. */
...
...
Jens Korinth
@jk
mentioned in commit
a831b501
·
Jul 14, 2017
mentioned in commit
a831b501
mentioned in commit a831b5015df6bd8f8d23ddd334a3b1159392de92
Toggle commit list
Write
Preview
Supports
Markdown
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