forked from KaptainWutax/Kaktoos
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkaktoos.cu
228 lines (182 loc) · 7.21 KB
/
kaktoos.cu
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
#include <cstdint>
#include <memory.h>
#include <cstdio>
#include <ctime>
#include <thread>
#include <vector>
#include <mutex>
#include <chrono>
#define RANDOM_MULTIPLIER 0x5DEECE66DULL
#define RANDOM_ADDEND 0xBULL
#define RANDOM_MASK ((1ULL << 48ULL) - 1ULL)
#ifndef FLOOR_LEVEL
#define FLOOR_LEVEL 63LL
#endif
#ifndef WANTED_CACTUS_HEIGHT
#define WANTED_CACTUS_HEIGHT 8ULL
#endif
#ifndef WORK_UNIT_SIZE
#define WORK_UNIT_SIZE (1ULL << 23ULL)
#endif
#ifndef BLOCK_SIZE
#define BLOCK_SIZE 1024ULL
#endif
#ifndef GPU_COUNT
#define GPU_COUNT 1ULL
#endif
#ifndef OFFSET
#define OFFSET 0
#endif
#ifndef END
#define END (1ULL << 48ULL)
#endif
__device__ inline int8_t extract(const int8_t heightMap[], uint32_t i) {
return (int8_t) (heightMap[i >> 1ULL] >> ((i & 1ULL) << 2ULL)) & 0xF;
}
__device__ inline void increase(int8_t heightMap[], uint32_t i) {
heightMap[i >> 1ULL] += 1ULL << ((i & 1ULL) << 2ULL);
}
namespace java_random {
// Random::next(bits)
__device__ inline uint32_t next(uint64_t *random, int32_t bits) {
*random = (*random * RANDOM_MULTIPLIER + RANDOM_ADDEND) & RANDOM_MASK;
return (uint32_t) (*random >> (48ULL - bits));
}
__device__ inline int32_t next_int_unknown(uint64_t *seed, int16_t bound) {
if ((bound & -bound) == bound) {
*seed = (*seed * RANDOM_MULTIPLIER + RANDOM_ADDEND) & RANDOM_MASK;
return (int32_t) ((bound * (*seed >> 17ULL)) >> 31ULL);
}
int32_t bits, value;
do {
*seed = (*seed * RANDOM_MULTIPLIER + RANDOM_ADDEND) & RANDOM_MASK;
bits = *seed >> 17ULL;
value = bits % bound;
} while (bits - value + (bound - 1) < 0);
return value;
}
// Random::nextInt(bound)
__device__ inline uint32_t next_int(uint64_t *random) {
return java_random::next(random, 31) % 3;
}
}
__global__ __launch_bounds__(BLOCK_SIZE, 2) void crack(uint64_t seed_offset, int32_t *num_seeds, uint64_t *seeds) {
uint64_t originalSeed = blockIdx.x * blockDim.x + threadIdx.x + seed_offset;
uint64_t seed = originalSeed;
int8_t heightMap[512];
#pragma unroll
for (int i = 0; i < 512; i++) {
heightMap[i] = 0;
}
int16_t currentHighestPos = 0;
int16_t terrainHeight;
int16_t initialPosX, initialPosY, initialPosZ;
int16_t posX, posY, posZ;
int16_t offset, posMap;
int16_t i, a, j;
for (i = 0; i < 10; i++) {
// Keep, most threads finish early this way
if (WANTED_CACTUS_HEIGHT - extract(heightMap, currentHighestPos) > 9 * (10 - i))
return;
initialPosX = java_random::next(&seed, 4) + 8;
initialPosZ = java_random::next(&seed, 4) + 8;
terrainHeight = (extract(heightMap, initialPosX + initialPosZ * 32) + FLOOR_LEVEL + 1) * 2;
initialPosY = java_random::next_int_unknown(&seed, terrainHeight);
for (a = 0; a < 10; a++) {
posX = initialPosX + java_random::next(&seed, 3) - java_random::next(&seed, 3);
posY = initialPosY + java_random::next(&seed, 2) - java_random::next(&seed, 2);
posZ = initialPosZ + java_random::next(&seed, 3) - java_random::next(&seed, 3);
posMap = posX + posZ * 32;
// Keep
if (posY <= extract(heightMap, posMap) + FLOOR_LEVEL && posY >= 0)
continue;
offset = 1 + java_random::next_int_unknown(&seed, java_random::next_int(&seed) + 1);
for (j = 0; j < offset; j++) {
if ((posY + j - 1) > extract(heightMap, posMap) + FLOOR_LEVEL || posY < 0) continue;
if ((posY + j) <= extract(heightMap, (posX + 1) + posZ * 32) + FLOOR_LEVEL && posY >= 0) continue;
if ((posY + j) <= extract(heightMap, posX + (posZ - 1) * 32) + FLOOR_LEVEL && posY >= 0) continue;
if ((posY + j) <= extract(heightMap, (posX - 1) + posZ * 32) + FLOOR_LEVEL && posY >= 0) continue;
if ((posY + j) <= extract(heightMap, posX + (posZ + 1) * 32) + FLOOR_LEVEL && posY >= 0) continue;
increase(heightMap, posMap);
if (extract(heightMap, currentHighestPos) < extract(heightMap, posMap)) {
currentHighestPos = posMap;
}
}
}
if (extract(heightMap, currentHighestPos) >= WANTED_CACTUS_HEIGHT) {
seeds[atomicAdd(num_seeds, 1)] = originalSeed;
return;
}
}
}
struct GPU_Node {
int *num_seeds;
uint64_t *seeds;
};
void setup_gpu_node(GPU_Node *node, int32_t gpu) {
cudaSetDevice(gpu);
cudaMallocManaged(&node->num_seeds, sizeof(*node->num_seeds));
cudaMallocManaged(&node->seeds, 1ULL << 10ULL);
}
GPU_Node nodes[GPU_COUNT];
uint64_t offset = OFFSET;
uint64_t count = 0;
std::mutex info_lock;
std::vector<uint64_t> seeds;
void gpu_manager(int32_t gpu_index) {
std::string fileName = "kaktoos_seeds" + std::to_string(gpu_index) + ".txt";
FILE *out_file = fopen(fileName.c_str(), "w");
cudaSetDevice(gpu_index);
while (offset < END) {
*nodes[gpu_index].num_seeds = 0;
crack<<<WORK_UNIT_SIZE / BLOCK_SIZE, BLOCK_SIZE, 0>>>(offset, nodes[gpu_index].num_seeds,
nodes[gpu_index].seeds);
info_lock.lock();
offset += WORK_UNIT_SIZE;
info_lock.unlock();
cudaDeviceSynchronize();
for (int32_t i = 0, e = *nodes[gpu_index].num_seeds; i < e; i++) {
fprintf(out_file, "%lld\n", (long long int) nodes[gpu_index].seeds[i]);
seeds.push_back(nodes[gpu_index].seeds[i]);
}
fflush(out_file);
info_lock.lock();
count += *nodes[gpu_index].num_seeds;
info_lock.unlock();
}
fclose(out_file);
}
int main() {
printf("Searching %ld total seeds...\n", (long int) (END - OFFSET));
std::thread threads[GPU_COUNT];
time_t startTime = time(nullptr), currentTime;
for (int32_t i = 0; i < GPU_COUNT; i++) {
setup_gpu_node(&nodes[i], i);
threads[i] = std::thread(gpu_manager, i);
}
using namespace std::chrono_literals;
while (offset < END) {
time(¤tTime);
int timeElapsed = (int) (currentTime - startTime);
double speed = (double) (offset - OFFSET) / (double) timeElapsed / 1000000.0;
printf("Searched %lld seeds, offset: %lld found %lld matches. Time elapsed: %ds. Speed: %.2fm seeds/s. %f%%\n",
(long long int) (offset - OFFSET),
(long long int) offset,
(long long int) count,
timeElapsed,
speed,
(double) (offset - OFFSET) / (END - OFFSET) * 100);
if (timeElapsed % 2000 == 0) {
printf("Backup seed list:\n");
for (auto &seed : seeds) {
printf("%llu\n", (unsigned long long) seed);
}
}
std::this_thread::sleep_for(1s);
}
for (auto &thread : threads) {
thread.join();
}
printf("Done!\n");
printf("But, verily, it be the nature of dreams to end.\n");
}