From 86d95e73722e2ffa0db3d45f869bc628c988cbc6 Mon Sep 17 00:00:00 2001 From: Brian O'Neill Date: Tue, 10 Dec 2024 09:39:01 -0600 Subject: [PATCH] Fix StateTest failure caused by previous Halo PR --- components/omega/test/ocn/StateTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/omega/test/ocn/StateTest.cpp b/components/omega/test/ocn/StateTest.cpp index 6a223da22686..af1fd8832c39 100644 --- a/components/omega/test/ocn/StateTest.cpp +++ b/components/omega/test/ocn/StateTest.cpp @@ -167,10 +167,10 @@ int initStateTest() { } // Finish initialization of initial state by filling halos and copying - // to device. Current time level is zero. + // to host. Current time level is zero. OceanState *DefState = OceanState::getDefault(); DefState->exchangeHalo(0); - DefState->copyToDevice(0); + DefState->copyToHost(0); return Err; }