diff --git a/Xenith/core.cpp b/Xenith/core.cpp index 23e1572..6dd4787 100644 --- a/Xenith/core.cpp +++ b/Xenith/core.cpp @@ -210,7 +210,7 @@ double NeuralNetwork::trainVulkan() { }, {}); // 6. ПАЙПЛАЙН (Загрузка шейдера) - auto shaderCode = readFile("shader.comp.spv"); // Твоя функция чтения файла + auto shaderCode = readFile("Xenith/shader.comp.spv"); // Твоя функция чтения файла vk::ShaderModule shaderModule = device.createShaderModule({{}, shaderCode.size(), (uint32_t*)shaderCode.data()}); vk::PipelineLayout pipeLayout = device.createPipelineLayout({{}, 1, &dsLayout}); diff --git a/main b/main index 0e8baa1..17e264c 100755 Binary files a/main and b/main differ diff --git a/main.cpp b/main.cpp index aadb8b3..f8d8a74 100644 --- a/main.cpp +++ b/main.cpp @@ -190,7 +190,7 @@ int main() { std::cout << "System Prompt updated!" << std::endl; } else if (cmdIn == "/trainVulkan") { - std::cout << nn.trainVulkan(); + std::cout << nn.trainVulkan() << "\n"; } else if (cmdIn == "/help") { std::cout << "\n--- MENU ---" << std::endl;