Spaces:
Runtime error
Runtime error
File size: 10,044 Bytes
be11144 |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
#include <unittest/unittest.h>
#include <thrust/detail/config.h>
#include <thrust/mr/pool.h>
#include <thrust/mr/new.h>
#if THRUST_CPP_DIALECT >= 2011
#include <thrust/mr/sync_pool.h>
#endif
template<typename T>
struct reference
{
typedef T & type;
};
template<>
struct reference<void>
{
typedef void type;
};
struct unit {};
template<typename T>
struct tracked_pointer : thrust::iterator_facade<
tracked_pointer<T>,
T,
thrust::host_system_tag,
thrust::random_access_traversal_tag,
typename reference<T>::type,
std::ptrdiff_t
>
{
typedef T * raw_pointer;
std::size_t id;
std::size_t size;
std::size_t alignment;
std::size_t offset;
void * ptr;
__host__ __device__
explicit tracked_pointer(T * ptr = NULL) : id(), size(), alignment(), offset(), ptr(ptr)
{
}
__host__ __device__
~tracked_pointer()
{
}
template<typename U>
operator tracked_pointer<U>() const
{
tracked_pointer<U> ret;
ret.id = id;
ret.size = size;
ret.alignment = alignment;
ret.offset = offset;
ret.ptr = ptr;
return ret;
}
__host__ __device__
std::ptrdiff_t distance_to(const tracked_pointer & other) const
{
return static_cast<T *>(other.ptr) - static_cast<T *>(ptr);
}
__host__ __device__
T * get() const
{
return static_cast<T *>(ptr);
}
// globally qualified, because MSVC somehow prefers the name from the dependent base
// of this class over the `reference` template that's visible in the global namespace of this file...
__host__ __device__
typename ::reference<T>::type dereference() const
{
return *get();
}
__host__ __device__
void increment()
{
advance(1);
}
__host__ __device__
void decrement()
{
advance(-1);
}
__host__ __device__
void advance(std::ptrdiff_t diff)
{
ptr = get() + diff;
offset += diff * sizeof(T);
}
__host__ __device__
bool equal(const tracked_pointer & other) const
{
return id == other.id && size == other.size && alignment == other.alignment && offset == other.offset && ptr == other.ptr;
}
};
class tracked_resource THRUST_FINAL : public thrust::mr::memory_resource<tracked_pointer<void> >
{
public:
tracked_resource() : id_to_allocate(0), id_to_deallocate(0)
{
}
~tracked_resource()
{
ASSERT_EQUAL(id_to_allocate, 0u);
ASSERT_EQUAL(id_to_deallocate, 0u);
}
virtual tracked_pointer<void> do_allocate(std::size_t n, std::size_t alignment = THRUST_MR_DEFAULT_ALIGNMENT) THRUST_OVERRIDE
{
ASSERT_EQUAL(static_cast<bool>(id_to_allocate), true);
void * raw = upstream.do_allocate(n, alignment);
tracked_pointer<void> ret(raw);
ret.id = id_to_allocate;
ret.size = n;
ret.alignment = alignment;
id_to_allocate = 0;
return ret;
}
virtual void do_deallocate(tracked_pointer<void> p, std::size_t n, std::size_t alignment = THRUST_MR_DEFAULT_ALIGNMENT) THRUST_OVERRIDE
{
ASSERT_EQUAL(p.size, n);
ASSERT_EQUAL(p.alignment, alignment);
if (id_to_deallocate != 0)
{
ASSERT_EQUAL(p.id, id_to_deallocate);
id_to_deallocate = 0;
}
upstream.do_deallocate(p.ptr, n, alignment);
}
std::size_t id_to_allocate;
std::size_t id_to_deallocate;
private:
thrust::mr::new_delete_resource upstream;
};
template<template<typename> class PoolTemplate>
void TestPool()
{
tracked_resource upstream;
upstream.id_to_allocate = -1u;
typedef PoolTemplate<
tracked_resource
> Pool;
thrust::mr::pool_options opts = Pool::get_default_options();
opts.cache_oversized = false;
// avoid having the destructor run when an assertion failure is raised
// (the destructor will try to release, which in turn calls do_deallocate,
// which may fail with an assertion failure exception...)
Pool * pool = new Pool(&upstream, opts);
upstream.id_to_allocate = 1;
// first allocation
tracked_pointer<void> a1 = pool->do_allocate(12, THRUST_MR_DEFAULT_ALIGNMENT);
ASSERT_EQUAL(a1.id, 1u);
// due to chunking, the above allocation should be enough for the next one too
tracked_pointer<void> a2 = pool->do_allocate(16, THRUST_MR_DEFAULT_ALIGNMENT);
ASSERT_EQUAL(a2.id, 1u);
// deallocating and allocating back should give the same resource back
pool->do_deallocate(a1, 12, THRUST_MR_DEFAULT_ALIGNMENT);
tracked_pointer<void> a3 = pool->do_allocate(12, THRUST_MR_DEFAULT_ALIGNMENT);
ASSERT_EQUAL(a1.id, a3.id);
ASSERT_EQUAL(a1.size, a3.size);
ASSERT_EQUAL(a1.alignment, a3.alignment);
ASSERT_EQUAL(a1.offset, a3.offset);
// allocating over-aligned memory should give non-cached results
// unlike with the disjoint version, nothing sensible can be said about the chunk size
upstream.id_to_allocate = 2;
tracked_pointer<void> a4 = pool->do_allocate(32, THRUST_MR_DEFAULT_ALIGNMENT * 2);
ASSERT_EQUAL(a4.id, 2u);
ASSERT_EQUAL(a4.alignment, (std::size_t)THRUST_MR_DEFAULT_ALIGNMENT * 2);
// and deallocating it should return it back to upstream
upstream.id_to_deallocate = 2;
pool->do_deallocate(a4, 32u, THRUST_MR_DEFAULT_ALIGNMENT * 2);
ASSERT_EQUAL(upstream.id_to_deallocate, 0u);
// release actually returns properly sized memory to upstream
upstream.id_to_deallocate = 1;
pool->release();
ASSERT_EQUAL(upstream.id_to_deallocate, 0u);
// and does the same for oversized/overaligned memory
upstream.id_to_allocate = 3;
tracked_pointer<void> a5 = pool->do_allocate(1024, THRUST_MR_DEFAULT_ALIGNMENT * 2);
ASSERT_EQUAL(upstream.id_to_allocate, 0u);
ASSERT_EQUAL(a5.id, 3u);
upstream.id_to_deallocate = 3;
pool->release();
ASSERT_EQUAL(upstream.id_to_deallocate, 0u);
// and after that, the formerly cached memory isn't used anymore,
// so new memory from upstream is returned back
upstream.id_to_allocate = 4;
tracked_pointer<void> a6 = pool->do_allocate(16, THRUST_MR_DEFAULT_ALIGNMENT);
ASSERT_EQUAL(upstream.id_to_allocate, 0u);
ASSERT_EQUAL(a6.id, 4u);
// destruction also returns memory
upstream.id_to_deallocate = 4;
// actually destroy the pool; reasons why RAII is not used outlined at the beginning
// of this function
delete pool;
ASSERT_EQUAL(upstream.id_to_deallocate, 0u);
}
void TestUnsynchronizedPool()
{
TestPool<thrust::mr::unsynchronized_pool_resource>();
}
DECLARE_UNITTEST(TestUnsynchronizedPool);
#if THRUST_CPP_DIALECT >= 2011
void TestSynchronizedPool()
{
TestPool<thrust::mr::synchronized_pool_resource>();
}
DECLARE_UNITTEST(TestSynchronizedPool);
#endif
template<template<typename> class PoolTemplate>
void TestPoolCachingOversized()
{
tracked_resource upstream;
upstream.id_to_allocate = -1u;
typedef PoolTemplate<
tracked_resource
> Pool;
thrust::mr::pool_options opts = Pool::get_default_options();
opts.cache_oversized = true;
opts.largest_block_size = 1024;
Pool pool(&upstream, opts);
upstream.id_to_allocate = 1;
tracked_pointer<void> a1 = pool.do_allocate(2048, 32);
ASSERT_EQUAL(a1.id, 1u);
upstream.id_to_allocate = 2;
tracked_pointer<void> a2 = pool.do_allocate(64, 32);
ASSERT_EQUAL(a2.id, 2u);
pool.do_deallocate(a2, 64, 32);
pool.do_deallocate(a1, 2048, 32);
// make sure a good fit is used from the cache
tracked_pointer<void> a3 = pool.do_allocate(32, 32);
ASSERT_EQUAL(a3.id, 2u);
tracked_pointer<void> a4 = pool.do_allocate(1024, 32);
ASSERT_EQUAL(a4.id, 1u);
pool.do_deallocate(a4, 1024, 32);
// make sure that a new block is allocated when there's nothing cached with
// the required alignment
upstream.id_to_allocate = 3;
tracked_pointer<void> a5 = pool.do_allocate(32, 64);
ASSERT_EQUAL(a5.id, 3u);
pool.release();
// make sure that release actually clears caches
upstream.id_to_allocate = 4;
tracked_pointer<void> a6 = pool.do_allocate(32, 64);
ASSERT_EQUAL(a6.id, 4u);
upstream.id_to_allocate = 5;
tracked_pointer<void> a7 = pool.do_allocate(2048, 1024);
ASSERT_EQUAL(a7.id, 5u);
pool.do_deallocate(a7, 2048, 1024);
// make sure that the 'ridiculousness' factor for size (options.cached_size_cutoff_factor)
// is respected
upstream.id_to_allocate = 6;
tracked_pointer<void> a8 = pool.do_allocate(24, 1024);
ASSERT_EQUAL(a8.id, 6u);
// make sure that the 'ridiculousness' factor for alignment (options.cached_alignment_cutoff_factor)
// is respected
upstream.id_to_allocate = 7;
tracked_pointer<void> a9 = pool.do_allocate(2048, 32);
ASSERT_EQUAL(a9.id, 7u);
}
void TestUnsynchronizedPoolCachingOversized()
{
TestPoolCachingOversized<thrust::mr::unsynchronized_pool_resource>();
}
DECLARE_UNITTEST(TestUnsynchronizedPoolCachingOversized);
#if THRUST_CPP_DIALECT >= 2011
void TestSynchronizedPoolCachingOversized()
{
TestPoolCachingOversized<thrust::mr::synchronized_pool_resource>();
}
DECLARE_UNITTEST(TestSynchronizedPoolCachingOversized);
#endif
template<template<typename> class PoolTemplate>
void TestGlobalPool()
{
typedef PoolTemplate<
thrust::mr::new_delete_resource
> Pool;
ASSERT_EQUAL(thrust::mr::get_global_resource<Pool>() != NULL, true);
}
void TestUnsynchronizedGlobalPool()
{
TestGlobalPool<thrust::mr::unsynchronized_pool_resource>();
}
DECLARE_UNITTEST(TestUnsynchronizedGlobalPool);
#if THRUST_CPP_DIALECT >= 2011
void TestSynchronizedGlobalPool()
{
TestGlobalPool<thrust::mr::synchronized_pool_resource>();
}
DECLARE_UNITTEST(TestSynchronizedGlobalPool);
#endif
|