Add device name to benchmark output file
This commit is contained in:
parent
c2aef7809f
commit
0142c8b820
1 changed files with 1 additions and 0 deletions
|
|
@ -290,6 +290,7 @@ void VulkanExampleBase::benchmarkLoop()
|
|||
|
||||
result << std::fixed << std::setprecision(3);
|
||||
result << title << std::endl;
|
||||
result << deviceProperties.deviceName << std::endl;
|
||||
result << ",iterations,time(ms),fps" << std::endl;;
|
||||
for (size_t i = 0; i < benchmark.iterationTime.size(); i++) {
|
||||
result << "," << i << "," << benchmark.iterationTime[i] << "," << (1000.0 / benchmark.iterationTime[i]) << std::endl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue