Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update macos-openmp GitHub actions workflow for macos-14 and higher #92

Merged
merged 9 commits into from
May 29, 2024
Prev Previous commit
Fix another instance of stack-allocated dynamically-sized array
  • Loading branch information
rileyjmurray committed May 29, 2024
commit d5f5346ff8cf5004f0ac7b1e359532d87afad858
3 changes: 2 additions & 1 deletion test/test_dense_skops/test_construction.cc
Original file line number Diff line number Diff line change
@@ -461,7 +461,7 @@ class TestStateUpdate : public ::testing::Test
RandBLAS::DenseDistName dn
) {
int total = 0;
int buff[n_rows*n_cols];
int *buff = new int[n_rows*n_cols];
auto state = RandBLAS::RNGState(key);
auto state_copy = RandBLAS::RNGState(key);

@@ -486,6 +486,7 @@ class TestStateUpdate : public ::testing::Test
}

ASSERT_TRUE(total == 0);
delete [] buff;
}

};
Loading