Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TeachRaccooon committed Apr 16, 2024
1 parent d1eb58d commit f5af0fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.10)
project(benchmark)

set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED True)

message(STATUS "Checking for OpenMP ... ")
Expand Down
2 changes: 1 addition & 1 deletion benchmark/Gemm_vs_ormqr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using namespace RandLAPACK;

template <typename T>
static void
test_speed(int64_t m, int64_t n, int64_t runs, RandBLAS::RNGState<RNG> const_state) {
test_speed(int64_t m, int64_t n, int64_t runs, RandBLAS::RNGState<> const_state) {

// Matrix to decompose.
std::vector<T> A(m * n, 0.0);
Expand Down

0 comments on commit f5af0fc

Please sign in to comment.