Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 2f15f62

Browse files
authoredMay 19, 2021
Merge pull request #35 from spacemeshos/long-run-test-app
Long run test app
2 parents ff8f50a + a43866e commit 2f15f62

30 files changed

+210
-32
lines changed
 

‎.github/workflows/build.yml

+25-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v2
19+
with:
20+
submodules: true
1921

2022
- name: Install CUDA
2123
env:
@@ -60,6 +62,8 @@ jobs:
6062

6163
steps:
6264
- uses: actions/checkout@v2
65+
with:
66+
submodules: true
6367

6468
- name: Install CUDA
6569
run: choco install cuda --version=${{ matrix.cuda }} --checksum ${{ matrix.cuda_hash }}
@@ -110,11 +114,13 @@ jobs:
110114

111115
steps:
112116
- uses: actions/checkout@v2
117+
with:
118+
submodules: true
113119

114120
- name: Install Vulkan
115121
run: .github/tools/macos-install-vulkan.sh
116122

117-
- run: cmake -DSPACEMESHCL=OFF -DSPACEMESHCUDA=OFF .
123+
- run: cmake -DSPACEMESHCUDA=OFF .
118124

119125
- run: make
120126

@@ -137,6 +143,24 @@ jobs:
137143
name: macos
138144
path: include/api.h
139145

146+
- name: Upload MoltenVK
147+
uses: actions/upload-artifact@v2
148+
with:
149+
name: macos
150+
path: ${{ env.VULKAN_ROOT_LOCATION }}/MoltenVK/dylib/macOS/libMoltenVK.dylib
151+
152+
- name: Upload MoltenVK config
153+
uses: actions/upload-artifact@v2
154+
with:
155+
name: macos
156+
path: ${{ env.VULKAN_ROOT_LOCATION }}/MoltenVK/dylib/macOS/MoltenVK_icd.json
157+
158+
- name: Upload Vulkan
159+
uses: actions/upload-artifact@v2
160+
with:
161+
name: macos
162+
path: ${{ env.VULKAN_ROOT_LOCATION }}/macOS/lib/libvulkan.*.dylib
163+
140164
release:
141165
runs-on: ubuntu-latest
142166
needs: [linux, windows, macos]

‎.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "zlib"]
2+
path = src/vulkan/zlib
3+
url = https://github.com/madler/zlib

‎gpu-setup-test

-352 KB
Binary file not shown.

‎macOS/.env

-1
This file was deleted.

‎macOS/MoltenVK_icd.json

-7
This file was deleted.

‎macOS/kernel-64-001.spirv

-96.8 KB
Binary file not shown.

‎macOS/kernel-64-002.spirv

-96.9 KB
Binary file not shown.

‎macOS/kernel-64-003.spirv

-97.6 KB
Binary file not shown.

‎macOS/kernel-64-004.spirv

-97 KB
Binary file not shown.

‎macOS/kernel-64-005.spirv

-98.4 KB
Binary file not shown.

‎macOS/kernel-64-006.spirv

-98.5 KB
Binary file not shown.

‎macOS/kernel-64-007.spirv

-99.2 KB
Binary file not shown.

‎macOS/kernel-64-008.spirv

-97.4 KB
Binary file not shown.

‎macOS/kernel-64-016.spirv

-98.1 KB
Binary file not shown.

‎macOS/kernel-64-032.spirv

-95.2 KB
Binary file not shown.

‎macOS/kernel-64-255.spirv

-268 KB
Binary file not shown.

‎macOS/kernel-64-256.spirv

-156 KB
Binary file not shown.

‎macOS/libMoltenVK.dylib

-13 MB
Binary file not shown.

‎macOS/libgpu-setup.dylib

-49.3 KB
Binary file not shown.

‎macOS/libvulkan.1.2.176.dylib

-776 KB
Binary file not shown.

‎macOS/libvulkan.1.dylib

-1
This file was deleted.

‎macOS/libvulkan.dylib

-1
This file was deleted.

‎src/CMakeLists.txt

+21
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ if (MSVC)
2626
)
2727
include_directories(compat)
2828
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
29+
else()
30+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
31+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
2932
endif()
3033

3134
include_directories(.)
@@ -92,6 +95,13 @@ if (SPACEMESHCUDA)
9295
)
9396
endif()
9497

98+
add_custom_command(
99+
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/vulkan-shaders-vault.inl
100+
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/vulkan/gen/shaders-gen
101+
COMMENT "Generating Vulkan Kernels Byte Array"
102+
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/vulkan/gen/scrypt-chacha.comp ${CMAKE_CURRENT_BINARY_DIR}/vulkan/gen/shaders-gen
103+
)
104+
95105
if (SPACEMESHVULKAN)
96106
# Look for vulkan SDK
97107
# For a Windows build on Linux, install the Vulkan SDK with wine, and set VULKAN_SDK to ..../.wine/drive_c/VulkanSDK/1.x.y
@@ -119,8 +129,15 @@ if (SPACEMESHVULKAN)
119129
vulkan/driver-vulkan.h
120130
vulkan/vulkan-helpers.c
121131
vulkan/vulkan-helpers.h
132+
133+
${CMAKE_CURRENT_BINARY_DIR}/vulkan-shaders-vault.inl
122134
)
123135

136+
include_directories(vulkan/zlib)
137+
include_directories(${CMAKE_CURRENT_BINARY_DIR})
138+
include_directories(${CMAKE_CURRENT_BINARY_DIR}/vulkan/zlib)
139+
140+
add_subdirectory(vulkan/zlib)
124141
add_subdirectory(vulkan/gen)
125142
endif()
126143

@@ -139,6 +156,10 @@ if (SPACEMESH_LIB_SHARED)
139156
target_link_libraries(gpu-setup -L${CUDA_LIB_PATH} -lcuda)
140157
endif()
141158
endif()
159+
160+
if (SPACEMESHVULKAN)
161+
target_link_libraries(gpu-setup zlibstatic)
162+
endif()
142163
else()
143164
if (SPACEMESHCUDA)
144165
cuda_add_library(gpu-setup ${SOURCES})

‎src/vulkan/driver-vulkan.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ static _vulkanState *initVulkan(struct cgpu_info *cgpu, char *name, size_t nameS
229229

230230
state->pipeline = compileShader(state->vkDevice, state->pipelineLayout, &state->shaderModule, scrypt_chacha_comp, options, (int)cgpu->work_size, hash_len_bits, copy_only);
231231
#else
232-
char filename[64];
233-
snprintf(filename, sizeof(filename), "kernel-%02d-%03d.spirv", (int)cgpu->work_size, hash_len_bits);
234-
state->pipeline = loadShader(state->vkDevice, state->pipelineLayout, &state->shaderModule, filename);
232+
// char filename[64];
233+
// snprintf(filename, sizeof(filename), "kernel-%02d-%03d.spirv", (int)cgpu->work_size, hash_len_bits);
234+
state->pipeline = loadShader(state->vkDevice, state->pipelineLayout, &state->shaderModule, cgpu->work_size, hash_len_bits);
235235
#endif
236236
if (!state->pipeline) {
237237
return NULL;

‎src/vulkan/gen/CMakeLists.txt

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ set(SOURCES
1919
${CMAKE_CURRENT_BINARY_DIR}/scrypt-chacha-vulkan.inl
2020
)
2121

22+
include_directories(vulkan/zlib)
23+
include_directories(${CMAKE_CURRENT_BINARY_DIR}/vulkan/zlib)
24+
2225
add_executable(shaders-gen ${SOURCES})
2326

2427
# Add Include/Lib (Windows) and include/lib (Linux)
@@ -29,3 +32,5 @@ elseif(APPLE)
2932
elseif(UNIX)
3033
target_link_libraries(shaders-gen -L$ENV{VULKAN_SDK}/lib -lvulkan shaderc_combined)
3134
endif()
35+
36+
target_link_libraries(shaders-gen zlibstatic)

‎src/vulkan/gen/main.cpp

+42-3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#include <vector>
2121
#include <stdarg.h>
2222

23+
#include "zlib.h"
24+
2325
#define VK_NO_PROTOTYPES 1
2426
#include <vulkan/vulkan.h>
2527
#include <vulkan/vulkan_core.h>
@@ -457,19 +459,56 @@ int main(int argc, char **argv)
457459
{
458460
init_glslang();
459461

462+
std::vector<uint8_t> out((4 + 4 * 256) * sizeof(uint32_t));
463+
uint32_t *header = (uint32_t *)out.data();
464+
465+
header[0] = 1;
466+
header[1] = 64;
467+
header[2] = 12;
468+
header[3] = 256;
469+
460470
for (int hash_len_bits = 1; hash_len_bits <= 256; hash_len_bits++) {
461471
char options[256];
462472
std::vector<uint32_t> spirv;
463473

464474
snprintf(options, sizeof(options), "#version 450\n#define LOOKUP_GAP %d\n#define WORKSIZE %d\n#define LABEL_SIZE %d\n", 4, 64, hash_len_bits);
465475

466476
if (compileShaderToSpirV(scrypt_chacha_comp, options, 64, hash_len_bits, false, spirv)) {
467-
char filename[128];
468-
snprintf(filename, sizeof(filename), "kernel-%02d-%03d.spirv", 64, hash_len_bits);
469-
saveToFile(filename, spirv.data(), spirv.size() * sizeof(uint32_t));
477+
// char filename[128];
478+
// snprintf(filename, sizeof(filename), "kernel-%02d-%03d.spirv", 64, hash_len_bits);
479+
// saveToFile(filename, spirv.data(), spirv.size() * sizeof(uint32_t));
480+
uLongf destLen = spirv.size() * sizeof(uint32_t);
481+
std::vector<Bytef> dst(destLen);
482+
if (Z_OK != compress2(dst.data(), &destLen, (Bytef*)spirv.data(), destLen, 9)) {
483+
return 1;
484+
}
485+
header[hash_len_bits * 4 + 0] = hash_len_bits;
486+
header[hash_len_bits * 4 + 1] = spirv.size() * sizeof(uint32_t);
487+
header[hash_len_bits * 4 + 2] = destLen;
488+
header[hash_len_bits * 4 + 3] = out.size();
489+
490+
printf("64:%03u %u -> %u\n", header[hash_len_bits * 4 + 0], header[hash_len_bits * 4 + 1], header[hash_len_bits * 4 + 2]);
491+
492+
out.insert(out.end(), dst.begin(), dst.begin() + destLen);
493+
header = (uint32_t *)out.data();
470494
}
471495
}
472496

497+
if (FILE *h = fopen("vulkan-shaders-vault.inl", "wb")) {
498+
fprintf(h, "uint8_t vulkan_shaders_vault[] = {\r\n");
499+
uint8_t *src = out.data();
500+
for (uint32_t length = (uint32_t)out.size(); length > 0; length -= std::min<uint32_t>(32, length)) {
501+
for (int i = 0; i < std::min<uint32_t>(32, length); i++) {
502+
fprintf(h, "0x%02x, ", *src++);
503+
}
504+
fprintf(h, "\n");
505+
}
506+
507+
fprintf(h, "};\r\n");
508+
509+
fclose(h);
510+
}
511+
473512
finalize_glslang();
474513

475514
return 0;

‎src/vulkan/vulkan-helpers.c

+88-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
#ifdef HAVE_VULKAN
88
#include "vulkan-helpers.h"
9+
#include "zlib.h"
10+
#include "vulkan-shaders-vault.inl"
911

1012
Vulkan gVulkan = { NULL };
1113
VkInstance gInstance = NULL;
@@ -28,6 +30,10 @@ int initVulkanLibrary()
2830
gVulkan.library = dlopen("libvulkan.so.1", RTLD_NOW | RTLD_LOCAL);
2931
}
3032
#elif defined( __APPLE__ )
33+
const char *idc = getenv("VK_ICD_FILENAMES");
34+
if (NULL == idc || 0 == idc[0]) {
35+
setenv("VK_ICD_FILENAMES", "./MoltenVK_icd.json", 1);
36+
}
3137
gVulkan.library = dlopen("libvulkan.dylib", RTLD_NOW | RTLD_LOCAL);
3238
#elif defined( _WIN32 )
3339
gVulkan.library = LoadLibraryA("vulkan-1.dll");
@@ -301,7 +307,7 @@ uint64_t getBufferMemoryRequirements(VkDevice vkDevice, VkBuffer b)
301307
return req.alignment;
302308
}
303309

304-
VkPipeline loadShader(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShaderModule *shader_module, const char * spirv_file_name)
310+
VkPipeline loadShaderFromFile(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShaderModule *shader_module, const char * spirv_file_name)
305311
{
306312
uint32_t *shader;
307313
size_t shader_size;
@@ -361,5 +367,86 @@ VkPipeline loadShader(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShad
361367
return pipeline;
362368
}
363369

370+
static uint32_t * getShader(uint32_t workSize, uint32_t labelSize, uint32_t *shader_size)
371+
{
372+
uint32_t *vulkan_shaders_vault_header = (uint32_t *)vulkan_shaders_vault;
373+
uint32_t count;
374+
375+
for (count = *vulkan_shaders_vault_header++; count > 0; count--, vulkan_shaders_vault_header += 2) {
376+
if (vulkan_shaders_vault_header[0] == workSize) {
377+
vulkan_shaders_vault_header = (uint32_t *)(vulkan_shaders_vault + vulkan_shaders_vault_header[1]);
378+
for (count = *vulkan_shaders_vault_header++; count > 0; count--, vulkan_shaders_vault_header += 4) {
379+
if (vulkan_shaders_vault_header[0] == labelSize) {
380+
uint32_t *shader = (uint32_t*)calloc(1, vulkan_shaders_vault_header[1]);
381+
if (NULL == shader) {
382+
applog(LOG_ERR, "Failed to allocate shader %u:%u %u\n", workSize, labelSize, vulkan_shaders_vault_header[1]);
383+
return NULL;
384+
}
385+
applog(LOG_INFO, "64:%03u %u -> %u\n", vulkan_shaders_vault_header[0], vulkan_shaders_vault_header[2], vulkan_shaders_vault_header[1]);
386+
*shader_size = vulkan_shaders_vault_header[1];
387+
uint8_t *src = vulkan_shaders_vault + vulkan_shaders_vault_header[3];
388+
uLongf shaderSize = vulkan_shaders_vault_header[1];
389+
if (Z_OK != uncompress((uint8_t*)shader, &shaderSize, src, vulkan_shaders_vault_header[2])) {
390+
applog(LOG_ERR, "Failed to uncompress shader %u:%u\n", workSize, labelSize);
391+
free(shader);
392+
return NULL;
393+
}
394+
return shader;
395+
}
396+
}
397+
break;
398+
}
399+
}
400+
return NULL;
401+
}
402+
403+
VkPipeline loadShader(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShaderModule *shader_module, uint32_t workSize, uint32_t labelSize)
404+
{
405+
uint32_t shader_size = 0;
406+
uint32_t *shader = getShader(workSize, labelSize, &shader_size);
407+
408+
if (NULL == shader) {
409+
applog(LOG_ERR, "SPIR-V program %d:%d not found\n", workSize, labelSize);
410+
return NULL;
411+
}
412+
413+
applog(LOG_INFO, "SPIR-V program %u:%u %u bytes\n", workSize, labelSize, shader_size);
414+
415+
VkShaderModuleCreateInfo shaderModuleCreateInfo = {
416+
VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO,
417+
0,
418+
0,
419+
shader_size,
420+
shader
421+
};
422+
423+
CHECK_RESULT(gVulkan.vkCreateShaderModule(vkDevice, &shaderModuleCreateInfo, 0, shader_module), "vkCreateShaderModule", NULL);
424+
425+
VkComputePipelineCreateInfo computePipelineCreateInfo = {
426+
VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
427+
0,
428+
0,
429+
{
430+
VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
431+
0,
432+
0,
433+
VK_SHADER_STAGE_COMPUTE_BIT,
434+
*shader_module,
435+
"main",
436+
0
437+
},
438+
pipelineLayout,
439+
0,
440+
0
441+
};
442+
443+
VkPipeline pipeline;
444+
CHECK_RESULT(gVulkan.vkCreateComputePipelines(vkDevice, 0, 1, &computePipelineCreateInfo, 0, &pipeline), "vkCreateComputePipelines", NULL);
445+
446+
free(shader);
447+
448+
return pipeline;
449+
}
450+
364451
#endif
365452

‎src/vulkan/vulkan-helpers.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,11 @@ VkDeviceMemory allocateGPUMemory(int index, VkDevice vkDevice, const VkDeviceSi
8888
VkBuffer createBuffer(VkDevice vkDevice, uint32_t computeQueueFamillyIndex, VkDeviceMemory memory, VkDeviceSize bufferSize, VkDeviceSize offset);
8989
VkPipelineLayout bindBuffers(VkDevice vkDevice, VkDescriptorSet *descriptorSet, VkDescriptorPool *descriptorPool, VkDescriptorSetLayout *descriptorSetLayout, VkBuffer b0, VkBuffer b1, VkBuffer b2, VkBuffer b3, VkBuffer b4, VkBuffer b5);
9090
uint64_t getBufferMemoryRequirements(VkDevice vkDevice, VkBuffer b);
91-
VkPipeline loadShader(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShaderModule *shader_module, const char * spirv_file_name);
91+
VkPipeline loadShaderFromFile(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShaderModule *shader_module, const char * spirv_file_name);
92+
VkPipeline loadShader(VkDevice vkDevice, VkPipelineLayout pipelineLayout, VkShaderModule *shader_module, uint32_t workSize, uint32_t labelSize);
9293

9394
#ifdef __cplusplus
94-
}
95+
} /* extern "C" */
9596
#endif
9697

9798
#endif // _SPACEMESH_VULKAN_VULKAN_HELPERS_H__

‎src/vulkan/zlib

Submodule zlib added at cacf7f1

‎test/test.cpp

+19-12
Original file line numberDiff line numberDiff line change
@@ -287,18 +287,6 @@ void test_core(int aLabelsCount, unsigned aDiff, unsigned aSeed, int labelSize)
287287

288288
switch(status) {
289289
case SPACEMESH_API_POW_SOLUTION_FOUND:
290-
printf("Pow solution at %u\n", (uint32_t)idx_solution);
291-
292-
// compute 256 hash at solution index:
293-
uint8_t hash[32];
294-
scryptPositions(cpu_id, id, idx_solution, idx_solution, 256, salt, SPACEMESH_API_COMPUTE_LEAFS, hash, 512, 1, 1, NULL, NULL, &hashes_computed, &hashes_per_sec);
295-
296-
printf("D: ");
297-
print_hex32(D);
298-
printf("\n");
299-
printf("H: ");
300-
print_hex32(hash);
301-
printf("\n");
302290
break;
303291

304292
case SPACEMESH_API_ERROR_NONE:
@@ -314,6 +302,25 @@ void test_core(int aLabelsCount, unsigned aDiff, unsigned aSeed, int labelSize)
314302
// set index for next iteration
315303
idx += labels_per_iter;
316304
}
305+
306+
if (idx_solution != -1ull) {
307+
308+
printf("Pow solution at %u\n", (uint32_t)idx_solution);
309+
310+
// compute 256 hash at solution index:
311+
uint8_t hash[32];
312+
scryptPositions(cpu_id, id, idx_solution, idx_solution, 256, salt, SPACEMESH_API_COMPUTE_LEAFS, hash, 512, 1, 1, NULL, NULL, &hashes_computed, &hashes_per_sec);
313+
314+
printf("D: ");
315+
print_hex32(D);
316+
printf("\n");
317+
printf("H: ");
318+
print_hex32(hash);
319+
printf("\n");
320+
} else {
321+
printf("error: no pow solution found");
322+
}
323+
317324
}
318325
}
319326
}

0 commit comments

Comments
 (0)
This repository has been archived.