summaryrefslogtreecommitdiff
path: root/src/pattern/none.h
blob: 8abc4194d6fa4dc5168ad9e30b8e4af376eb0b68 (plain)
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
#pragma once

#include "population.h"
#include "propagation.h"

#include <unistd.h>

namespace pattern {

template <concepts::Arithmetic T>
class NONE {
private:
	Cuboid _cuboid;

	T* _base;
	T* _f[population::q];

public:
	using value_t = T;

	NONE(Cuboid cuboid):
		_cuboid(cuboid)
	{
		const std::size_t pagesize = sysconf(_SC_PAGESIZE);
		const std::size_t padding = _cuboid.index(1,1,1);
		_base = static_cast<T*>(
		  std::aligned_alloc(pagesize, population::q * (_cuboid.volume() + 2*padding) * sizeof(T)));
		for (unsigned iPop=0; iPop < population::q; ++iPop) {
			_f[iPop] = _base + iPop * (_cuboid.volume() + 2*padding) + padding;
		}
	}

	~NONE() {
		delete [] _base;
	}

	T* get(unsigned iPop, stage::pre_collision) {
		return _f[iPop];
	}

	T* get(unsigned iPop, stage::post_collision) {
		return _f[iPop];
	}

	void stream() { }
};

}