Skip to content
Snippets Groups Projects
Commit dbfec57e authored by Nina Džugasová's avatar Nina Džugasová
Browse files

Successfully ran.

parent 9cfd6a53
No related branches found
No related tags found
1 merge request!15Nina
......@@ -891,7 +891,6 @@ EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS = */Communicators/* \
*/Config/* \
*/Containers/* \
*/Debugging/* \
*/Devices/* \
*/DistributedContainers/* \
......
......@@ -508,12 +508,12 @@ Benchmark::MetadataMap getHardwareMetadata()
? Communicators::MpiCommunicator::GetSize( Communicators::MpiCommunicator::AllGroup )
: 1 },
#endif
{ "OpenMP enabled", Devices::Host::isOMPEnabled() },
{ "OpenMP threads", Devices::Host::getMaxThreadsCount() },
{ "OpenMP enabled", String( Devices::Host::isOMPEnabled() ) },
{ "OpenMP threads", String( Devices::Host::getMaxThreadsCount() ) },
{ "CPU model name", Devices::SystemInfo::getCPUModelName( cpu_id ) },
{ "CPU cores", Devices::SystemInfo::getNumberOfCores( cpu_id ) },
{ "CPU threads per core", Devices::SystemInfo::getNumberOfThreads( cpu_id ) / Devices::SystemInfo::getNumberOfCores( cpu_id ) },
{ "CPU max frequency (MHz)", Devices::SystemInfo::getCPUMaxFrequency( cpu_id ) / 1e3 },
{ "CPU cores", String( Devices::SystemInfo::getNumberOfCores( cpu_id ) ) },
{ "CPU threads per core", String( Devices::SystemInfo::getNumberOfThreads( cpu_id ) / Devices::SystemInfo::getNumberOfCores( cpu_id ) ) },
{ "CPU max frequency (MHz)", String( Devices::SystemInfo::getCPUMaxFrequency( cpu_id ) / 1e3 ) },
{ "CPU cache sizes (L1d, L1i, L2, L3) (kiB)", cacheInfo },
#ifdef HAVE_CUDA
{ "GPU name", Devices::CudaDeviceInfo::getDeviceName( activeGPU ) },
......
......@@ -177,11 +177,11 @@ struct SpmvBenchmark
benchmark.setMetadataColumns( Benchmark::MetadataColumns({
// TODO: strip the device
// {"matrix type", matrix.getType()},
{"rows", matrix.getRows()},
{"columns", matrix.getColumns()},
{"rows", String( matrix.getRows() ) },
{"columns", String( matrix.getColumns() ) },
// FIXME: getMaxRowLengths() returns 0 for matrices loaded from file
// {"max elements per row", matrix.getMaxRowLength()},
{"max elements per row", maxRowLength},
{"max elements per row", String( maxRowLength ) },
} ));
const bool reorder = parameters.getParameter< bool >( "reorder-dofs" );
......
......@@ -347,11 +347,11 @@ struct LinearSolversBenchmark
benchmark.setMetadataColumns( Benchmark::MetadataColumns({
// TODO: strip the device
// {"matrix type", matrixPointer->getType()},
{"rows", matrixPointer->getRows()},
{"columns", matrixPointer->getColumns()},
{"rows", String( matrixPointer->getRows() ) },
{"columns", String( matrixPointer->getColumns() ) },
// FIXME: getMaxRowLengths() returns 0 for matrices loaded from file
// {"max elements per row", matrixPointer->getMaxRowLength()},
{"max elements per row", maxRowLength},
{"max elements per row", String( maxRowLength ) },
} ));
const bool reorder = parameters.getParameter< bool >( "reorder-dofs" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment