Files
lammps/lib/kokkos/core/unit_test/TestSharedAlloc.hpp
2020-12-22 08:52:37 -07:00

249 lines
7.4 KiB
C++

/*
//@HEADER
// ************************************************************************
//
// Kokkos v. 3.0
// Copyright (2020) National Technology & Engineering
// Solutions of Sandia, LLC (NTESS).
//
// Under the terms of Contract DE-NA0003525 with NTESS,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY NTESS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL NTESS OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Christian R. Trott (crtrott@sandia.gov)
//
// ************************************************************************
//@HEADER
*/
#include <gtest/gtest.h>
#include <stdexcept>
#include <sstream>
#include <iostream>
#include <Kokkos_Core.hpp>
/*--------------------------------------------------------------------------*/
namespace Test {
struct SharedAllocDestroy {
volatile int* count;
SharedAllocDestroy() = default;
SharedAllocDestroy(int* arg) : count(arg) {}
void destroy_shared_allocation() { Kokkos::atomic_increment(count); }
};
template <class MemorySpace, class ExecutionSpace>
void test_shared_alloc() {
#if defined(KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HOST)
using Header = const Kokkos::Impl::SharedAllocationHeader;
using Tracker = Kokkos::Impl::SharedAllocationTracker;
using RecordBase = Kokkos::Impl::SharedAllocationRecord<void, void>;
using RecordMemS = Kokkos::Impl::SharedAllocationRecord<MemorySpace, void>;
using RecordFull =
Kokkos::Impl::SharedAllocationRecord<MemorySpace, SharedAllocDestroy>;
static_assert(sizeof(Tracker) == sizeof(int*),
"SharedAllocationTracker has wrong size!");
MemorySpace s;
const size_t N = 1200;
const size_t size = 8;
RecordMemS* rarray[N];
Header* harray[N];
RecordMemS** const r = rarray;
Header** const h = harray;
Kokkos::RangePolicy<ExecutionSpace> range(0, N);
{
// Since always executed on host space, leave [=]
Kokkos::parallel_for(range, [=](size_t i) {
char name[64];
sprintf(name, "test_%.2d", int(i));
r[i] = RecordMemS::allocate(s, name, size * (i + 1));
h[i] = Header::get_header(r[i]->data());
ASSERT_EQ(r[i]->use_count(), 0);
for (size_t j = 0; j < (i / 10) + 1; ++j) RecordBase::increment(r[i]);
ASSERT_EQ(r[i]->use_count(), (i / 10) + 1);
ASSERT_EQ(r[i], RecordMemS::get_record(r[i]->data()));
});
Kokkos::fence();
#ifdef KOKKOS_ENABLE_DEBUG
// Sanity check for the whole set of allocation records to which this record
// belongs.
RecordBase::is_sane(r[0]);
// RecordMemS::print_records( std::cout, s, true );
#endif
Kokkos::parallel_for(range, [=](size_t i) {
while (nullptr !=
(r[i] = static_cast<RecordMemS*>(RecordBase::decrement(r[i])))) {
#ifdef KOKKOS_ENABLE_DEBUG
if (r[i]->use_count() == 1) RecordBase::is_sane(r[i]);
#endif
}
});
Kokkos::fence();
}
{
int destroy_count = 0;
SharedAllocDestroy counter(&destroy_count);
Kokkos::parallel_for(range, [=](size_t i) {
char name[64];
sprintf(name, "test_%.2d", int(i));
RecordFull* rec = RecordFull::allocate(s, name, size * (i + 1));
rec->m_destroy = counter;
r[i] = rec;
h[i] = Header::get_header(r[i]->data());
ASSERT_EQ(r[i]->use_count(), 0);
for (size_t j = 0; j < (i / 10) + 1; ++j) RecordBase::increment(r[i]);
ASSERT_EQ(r[i]->use_count(), (i / 10) + 1);
ASSERT_EQ(r[i], RecordMemS::get_record(r[i]->data()));
});
Kokkos::fence();
#ifdef KOKKOS_ENABLE_DEBUG
RecordBase::is_sane(r[0]);
#endif
Kokkos::parallel_for(range, [=](size_t i) {
while (nullptr !=
(r[i] = static_cast<RecordMemS*>(RecordBase::decrement(r[i])))) {
#ifdef KOKKOS_ENABLE_DEBUG
if (r[i]->use_count() == 1) RecordBase::is_sane(r[i]);
#endif
}
});
Kokkos::fence();
ASSERT_EQ(destroy_count, int(N));
}
{
int destroy_count = 0;
{
RecordFull* rec = RecordFull::allocate(s, "test", size);
// ... Construction of the allocated { rec->data(), rec->size() }
// Copy destruction function object into the allocation record.
rec->m_destroy = SharedAllocDestroy(&destroy_count);
ASSERT_EQ(rec->use_count(), 0);
// Start tracking, increments the use count from 0 to 1.
Tracker track;
track.assign_allocated_record_to_uninitialized(rec);
ASSERT_EQ(rec->use_count(), 1);
ASSERT_EQ(track.use_count(), 1);
// Verify construction / destruction increment.
for (size_t i = 0; i < N; ++i) {
ASSERT_EQ(rec->use_count(), 1);
{
Tracker local_tracker;
local_tracker.assign_allocated_record_to_uninitialized(rec);
ASSERT_EQ(rec->use_count(), 2);
ASSERT_EQ(local_tracker.use_count(), 2);
}
ASSERT_EQ(rec->use_count(), 1);
ASSERT_EQ(track.use_count(), 1);
}
Kokkos::parallel_for(range, [=](size_t) {
Tracker local_tracker;
local_tracker.assign_allocated_record_to_uninitialized(rec);
ASSERT_GT(rec->use_count(), 1);
});
Kokkos::fence();
ASSERT_EQ(rec->use_count(), 1);
ASSERT_EQ(track.use_count(), 1);
// Destruction of 'track' object deallocates the 'rec' and invokes the
// destroy function object.
}
ASSERT_EQ(destroy_count, 1);
}
#endif /* #if defined( KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HOST ) */
}
TEST(TEST_CATEGORY, impl_shared_alloc) {
#ifdef TEST_CATEGORY_NUMBER
#if (TEST_CATEGORY_NUMBER < 4) // serial threads openmp hpx
test_shared_alloc<Kokkos::HostSpace, TEST_EXECSPACE>();
#elif (TEST_CATEGORY_NUMBER == 4) // openmptarget
test_shared_alloc<Kokkos::Experimental::OpenMPTargetSpace,
Kokkos::DefaultHostExecutionSpace>();
#elif (TEST_CATEGORY_NUMBER == 5) // cuda
test_shared_alloc<Kokkos::CudaSpace, Kokkos::DefaultHostExecutionSpace>();
#elif (TEST_CATEGORY_NUMBER == 6) // hip
test_shared_alloc<Kokkos::Experimental::HIPSpace,
Kokkos::DefaultHostExecutionSpace>();
#endif
#else
test_shared_alloc<TEST_EXECSPACE, Kokkos::DefaultHostExecutionSpace>();
#endif
}
} // namespace Test