From 49e912a9d0d6ca5f762ec11cd8cb918f182eb76e Mon Sep 17 00:00:00 2001 From: Yong He Date: Tue, 17 Dec 2024 12:42:24 -0800 Subject: Fix entrypoint auto discovery logic. (#5885) * Fix entrypoint auto discovery logic. * format code --------- Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com> --- tools/slang-unit-test/unit-test-cuda-compile.cpp | 56 ++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 tools/slang-unit-test/unit-test-cuda-compile.cpp (limited to 'tools') diff --git a/tools/slang-unit-test/unit-test-cuda-compile.cpp b/tools/slang-unit-test/unit-test-cuda-compile.cpp new file mode 100644 index 000000000..280871dac --- /dev/null +++ b/tools/slang-unit-test/unit-test-cuda-compile.cpp @@ -0,0 +1,56 @@ +// unit-test-cuda-compile.cpp + +#include "../../source/core/slang-io.h" +#include "../../source/core/slang-process.h" +#include "slang-com-ptr.h" +#include "slang.h" +#include "unit-test/slang-unit-test.h" + +#include +#include + +using namespace Slang; + +// Test that the compilation API can be used to produce CUDA source. + +SLANG_UNIT_TEST(CudaCompile) +{ + // Source for a module that contains an undecorated entrypoint. + const char* userSourceBody = R"( + [CudaDeviceExport] + float testExportedFunc(float3 particleRayOrigin) + { + return dot(particleRayOrigin,particleRayOrigin); + }; + )"; + + auto moduleName = "moduleG" + String(Process::getId()); + ComPtr globalSession; + SLANG_CHECK(slang_createGlobalSession(SLANG_API_VERSION, globalSession.writeRef()) == SLANG_OK); + slang::TargetDesc targetDesc = {}; + targetDesc.format = SLANG_CUDA_SOURCE; + slang::SessionDesc sessionDesc = {}; + sessionDesc.targetCount = 1; + sessionDesc.targets = &targetDesc; + ComPtr session; + SLANG_CHECK(globalSession->createSession(sessionDesc, session.writeRef()) == SLANG_OK); + + ComPtr diagnosticBlob; + auto module = session->loadModuleFromSourceString( + "m", + "m.slang", + userSourceBody, + diagnosticBlob.writeRef()); + SLANG_CHECK(module != nullptr); + + ComPtr linkedProgram; + module->link(linkedProgram.writeRef(), diagnosticBlob.writeRef()); + SLANG_CHECK(linkedProgram != nullptr); + + ComPtr code; + linkedProgram->getTargetCode(0, code.writeRef(), diagnosticBlob.writeRef()); + SLANG_CHECK(code != nullptr); + SLANG_CHECK(code->getBufferSize() != 0); + String text = String((char*)code->getBufferPointer()); + SLANG_CHECK(text.indexOf("testExportedFunc") > 0); +} -- cgit v1.2.3