Skip to content

Commit c337c99

Browse files
committed
Merge branch 'feature/operation-v2' of github.com:LLNL/Umpire into device-memset-operation
2 parents 6143c6c + 5df1773 commit c337c99

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

src/umpire/DeviceAllocator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ __host__ DeviceAllocator::DeviceAllocator(Allocator allocator, size_t size, cons
2727
auto device_alloc = rm.getAllocator("UM");
2828

2929
m_counter = static_cast<unsigned int*>(device_alloc.allocate(sizeof(unsigned int)));
30-
umpire::memset(m_counter, 0);
30+
umpire::memset(m_counter, 0, 1);
3131

3232
// convert the string name to a char name
3333
const char* name = old_name.c_str();

tests/integration/interface/fortran/allocator_fortran_tests.F

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1399,7 +1399,6 @@ end module umpire_fortran_generated_tests
13991399

14001400

14011401
program fortran_test
1402-
use fruit
14031402
use umpire_fortran_generated_tests
14041403

14051404
implicit none

tests/integration/interface/fortran/introspection_fortran_tests.F

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ end subroutine test_introspection
5151
end module umpire_fortran_introspection_tests
5252

5353
program fortran_test
54-
use fruit
5554
use umpire_fortran_introspection_tests
5655

5756
implicit none

tests/integration/interface/fortran/op_fortran_tests.F

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ end module umpire_fortran_op_tests
5151

5252

5353
program fortran_test
54-
use fruit
5554
use umpire_fortran_op_tests
5655

5756
implicit none

tests/integration/interface/fortran/version_fortran_tests.F

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ end subroutine test_version
3232
end module umpire_fortran_version_tests
3333

3434
program fortran_test
35-
use fruit
3635
use umpire_fortran_version_tests
3736

3837
implicit none

0 commit comments

Comments
 (0)