Commit dbfec57e authored by Nina Džugasová's avatar Nina Džugasová
Browse files

Successfully ran.

parent 9cfd6a53
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -891,7 +891,6 @@ EXCLUDE_SYMLINKS = NO

EXCLUDE_PATTERNS       = */Communicators/* \
                         */Config/* \
                         */Containers/* \
                         */Debugging/* \
                         */Devices/* \
                         */DistributedContainers/* \
+5 −5
Original line number Diff line number Diff line
@@ -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 ) },
+3 −3
Original line number Diff line number Diff line
@@ -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" );
+3 −3
Original line number Diff line number Diff line
@@ -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" );