File: mr_new.cu

package info (click to toggle)
cccl 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,248 kB
  • sloc: cpp: 264,457; python: 6,421; sh: 2,762; perl: 460; makefile: 114; xml: 13
file content (37 lines) | stat: -rw-r--r-- 1,201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <thrust/fill.h>
#include <thrust/mr/new.h>

#include <unittest/unittest.h>

template <typename MemoryResource>
void TestAlignment(MemoryResource memres, std::size_t size, std::size_t alignment)
{
  void* ptr = memres.do_allocate(size, alignment);
  ASSERT_EQUAL(reinterpret_cast<std::size_t>(ptr) % alignment, 0u);

  char* char_ptr = reinterpret_cast<char*>(ptr);
  thrust::fill(char_ptr, char_ptr + size, char{});

  memres.do_deallocate(ptr, size, alignment);
}

static const std::size_t MinTestedSize  = 32;
static const std::size_t MaxTestedSize  = 8 * 1024;
static const std::size_t TestedSizeStep = 1;

static const std::size_t MinTestedAlignment   = 16;
static const std::size_t MaxTestedAlignment   = 4 * 1024;
static const std::size_t TestedAlignmentShift = 1;

void TestNewDeleteResourceAlignedAllocation()
{
  for (std::size_t size = MinTestedSize; size <= MaxTestedSize; size += TestedSizeStep)
  {
    for (std::size_t alignment = MinTestedAlignment; alignment <= MaxTestedAlignment;
         alignment <<= TestedAlignmentShift)
    {
      TestAlignment(thrust::mr::new_delete_resource(), size, alignment);
    }
  }
}
DECLARE_UNITTEST(TestNewDeleteResourceAlignedAllocation);