From bacb5587a8be6bf90d93bf96b30840bda9847eb0 Mon Sep 17 00:00:00 2001 From: Jian Sun Date: Mon, 18 Nov 2024 14:40:49 -0700 Subject: [PATCH] uncomment a GPU test --- .../cuda/test_cuda_analytical_rosenbrock.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/integration/cuda/test_cuda_analytical_rosenbrock.cpp b/test/integration/cuda/test_cuda_analytical_rosenbrock.cpp index a3b6f66c0..d4fb6e266 100644 --- a/test/integration/cuda/test_cuda_analytical_rosenbrock.cpp +++ b/test/integration/cuda/test_cuda_analytical_rosenbrock.cpp @@ -178,11 +178,11 @@ TEST(AnalyticalExamplesCudaRosenbrock, Oregonator) test_analytical_oregonator(six_da_1_cell, 2e-3, copy_to_device, copy_to_host); } -// TEST(AnalyticalExamplesCudaRosenbrock, HIRES) -// { -// test_analytical_hires(two_1_cell, 1e-6, copy_to_device, copy_to_host); -// test_analytical_hires(three_1_cell, 1e-7, copy_to_device, copy_to_host); -// test_analytical_hires(four_1_cell, 1e-7, copy_to_device, copy_to_host); -// test_analytical_hires(four_da_1_cell, 1e-6, copy_to_device, copy_to_host); -// test_analytical_hires(six_da_1_cell, 1e-6, copy_to_device, copy_to_host); -// } +TEST(AnalyticalExamplesCudaRosenbrock, HIRES) +{ + test_analytical_hires(two_1_cell, 1e-6, copy_to_device, copy_to_host); + test_analytical_hires(three_1_cell, 1e-7, copy_to_device, copy_to_host); + test_analytical_hires(four_1_cell, 1e-7, copy_to_device, copy_to_host); + test_analytical_hires(four_da_1_cell, 1e-6, copy_to_device, copy_to_host); + test_analytical_hires(six_da_1_cell, 1e-6, copy_to_device, copy_to_host); +}