-
Notifications
You must be signed in to change notification settings - Fork 526
[SYSTEMDS-3556] Counter based random number generator #2186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
3233829
Counter-based Philox RNG - Co-authored-by: ichbinstudent <45435943+ic…
chris-1187 fc01ff5
Added unittests and added counter based normal distributed rng using …
ichbinstudent 3a6df20
fix imports
ichbinstudent 75f224f
Improve unit test and remove unnecessary tests
ichbinstudent 30ac4e2
Add missing license
ichbinstudent e54c9f3
refactor genFullyDense
ichbinstudent 8dc6975
Removed wildcard import
ichbinstudent 931f317
Removed wildcard import
ichbinstudent 79c58c4
RandCounterBased DML
chris-1187 a8d63ff
Added test to make sure values generated when using streams are the s…
ichbinstudent 543f3b2
Add instructions on how to use the cuda version to the staging folder
ichbinstudent fc578c6
Added licenses, shortened readme.md
chris-1187 fe8a986
Delete scripts/staging/cuda-counter-based-prng/philox_kernel.ptx
ichbinstudent File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
scripts/staging/cuda-counter-based-prng/PhiloxJNvrtcExample.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| import jcuda.*; | ||
| import jcuda.driver.*; | ||
| import jcuda.nvrtc.*; | ||
| import jcuda.runtime.JCuda; | ||
|
|
||
| import java.io.IOException; | ||
| import java.nio.charset.StandardCharsets; | ||
| import java.nio.file.Files; | ||
| import java.nio.file.Paths; | ||
|
|
||
| import static jcuda.driver.JCudaDriver.cuCtxCreate; | ||
|
|
||
| public class PhiloxJNvrtcExample { | ||
|
|
||
| public static void main(String[] args) { | ||
| // Enable exceptions and omit error checks | ||
| JCuda.setExceptionsEnabled(true); | ||
| JCudaDriver.setExceptionsEnabled(true); | ||
| JNvrtc.setExceptionsEnabled(true); | ||
|
|
||
| String ptx = ""; | ||
| try { | ||
| ptx = new String(Files.readAllBytes(Paths.get("philox_kernel.ptx"))); | ||
| } catch (IOException e) { | ||
| System.out.println(e.getMessage()); | ||
| } | ||
|
|
||
| // Print the PTX for debugging | ||
| //System.out.println("Generated PTX:"); | ||
| // System.out.println(ptx); | ||
|
|
||
| // Initialize the driver API and create a context | ||
| JCudaDriver.cuInit(0); | ||
| CUdevice device = new CUdevice(); | ||
| JCudaDriver.cuDeviceGet(device, 0); | ||
| CUcontext context = new CUcontext(); | ||
| cuCtxCreate(context, 0, device); | ||
|
|
||
| CUmodule module = new CUmodule(); | ||
| JCudaDriver.cuModuleLoadData(module, ptx); | ||
|
|
||
| // Get a function pointer to the kernel | ||
| CUfunction function = new CUfunction(); | ||
| JCudaDriver.cuModuleGetFunction(function, module, "philox_4_64"); | ||
|
|
||
| // Prepare data | ||
| int n = 1000; // Number of random numbers to generate | ||
| long[] hostOut = new long[n]; | ||
| CUdeviceptr deviceOut = new CUdeviceptr(); | ||
| JCudaDriver.cuMemAlloc(deviceOut, n * Sizeof.LONG); | ||
|
|
||
| // Direkte Werte für seed und startingCounter | ||
| long seed = 0L; // Fester Seed-Wert | ||
| long startingCounter = 0L; // Startwert für Counter | ||
|
|
||
| Pointer kernelParameters = Pointer.to( | ||
| Pointer.to(deviceOut), // ulong* output | ||
| Pointer.to(new long[]{seed}), // uint64_t seed | ||
| Pointer.to(new long[]{startingCounter}), // uint64_t startingCounter | ||
| Pointer.to(new long[]{n}) // size_t numElements | ||
| ); | ||
|
|
||
| // Launch the kernel | ||
| int blockSizeX = 128; | ||
| int gridSizeX = (int) Math.ceil((double)n / blockSizeX); | ||
| JCudaDriver.cuLaunchKernel( | ||
| function, | ||
| gridSizeX, 1, 1, // Grid dimension | ||
| blockSizeX, 1, 1, // Block dimension | ||
| 0, null, // Shared memory size and stream | ||
| kernelParameters, null // Kernel- und extra parameters | ||
| ); | ||
| JCudaDriver.cuCtxSynchronize(); | ||
|
|
||
| // Copy result back | ||
| JCudaDriver.cuMemcpyDtoH(Pointer.to(hostOut), deviceOut, n * Sizeof.LONG); | ||
|
|
||
| // Print results | ||
| System.out.println("Generated random numbers with seed=" + | ||
| String.format("0x%016X", seed) + | ||
| " and startingCounter=" + startingCounter); | ||
| for (int i = 0; i < Math.min(10, n); i++) { | ||
| System.out.printf("hostOut[%d] = 0x%016X\n", i, hostOut[i]); | ||
| } | ||
|
|
||
| // Cleanup | ||
| JCudaDriver.cuMemFree(deviceOut); | ||
| JCudaDriver.cuCtxDestroy(context); | ||
| } | ||
| } | ||
225 changes: 225 additions & 0 deletions
225
scripts/staging/cuda-counter-based-prng/PhiloxRuntimeCompilationExample.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,225 @@ | ||
| import jcuda.*; | ||
| import jcuda.driver.*; | ||
|
|
||
| import java.io.BufferedReader; | ||
| import java.io.File; | ||
| import java.io.FileWriter; | ||
| import java.io.InputStreamReader; | ||
| import java.util.ArrayList; | ||
| import java.util.List; | ||
| import java.util.Random; | ||
|
|
||
| import static java.nio.file.Files.readAllBytes; | ||
| import static jcuda.driver.JCudaDriver.*; | ||
|
|
||
| public class PhiloxRuntimeCompilationExample implements AutoCloseable { | ||
| private static String philox4x64KernelSource = "#include <cuda_runtime.h>\n" + | ||
| "#include <Random123/philox.h>\n" + | ||
| "extern \"C\" __global__ void philox_4_64(ulong* output, uint64_t startingCounter, uint64_t seed, size_t numElements) {\n" | ||
| + | ||
| " uint64_t idx = blockIdx.x * blockDim.x + threadIdx.x;\n" + | ||
| " if (idx * 4 < numElements) {\n" + | ||
| " r123::Philox4x64 rng;\n" + | ||
| " r123::Philox4x64::ctr_type ctr = {{startingCounter + idx, 0, 0, 0}};\n" + | ||
| " r123::Philox4x64::key_type key = {{seed}};\n" + | ||
| " r123::Philox4x64::ctr_type result = rng(ctr, key);\n" + | ||
| " for (int i = 0; i < 4; ++i) {\n" + | ||
| " size_t outputIdx = idx * 4 + i;\n" + | ||
| " if (outputIdx < numElements) {\n" + | ||
| " output[outputIdx] = result[i];\n" + | ||
| " }\n" + | ||
| " }\n" + | ||
| " }\n" + | ||
| "}\n"; | ||
|
|
||
| private final CUcontext context; | ||
| private final CUmodule module; | ||
| private final CUfunction function; | ||
| private final int blockSize; | ||
|
|
||
| public PhiloxRuntimeCompilationExample() { | ||
| JCudaDriver.setExceptionsEnabled(true); | ||
| // Initialize CUDA | ||
| cuInit(0); | ||
| CUdevice device = new CUdevice(); | ||
| cuDeviceGet(device, 0); | ||
| context = new CUcontext(); | ||
| int result = cuCtxCreate(context, 0, device); | ||
| if (result != CUresult.CUDA_SUCCESS) { | ||
| throw new RuntimeException( | ||
| "Kontext-Erstellung fehlgeschlagen: " + result + ", " + CUresult.stringFor(result)); | ||
| } | ||
|
|
||
| // Compile to PTX | ||
| String ptx = compileToTPX(philox4x64KernelSource); | ||
|
|
||
| // Load the PTX | ||
| module = new CUmodule(); | ||
| cuModuleLoadData(module, ptx); | ||
| function = new CUfunction(); | ||
| cuModuleGetFunction(function, module, "philox_4_64"); | ||
|
|
||
| // Set block size based on device capabilities | ||
| blockSize = 64; // Can be adjusted based on device properties | ||
| } | ||
|
|
||
| private String compileToTPX(String source) { | ||
| try { | ||
| // Temporäre Dateien erstellen | ||
| File sourceFile = File.createTempFile("philox_kernel", ".cu"); | ||
| File outputFile = File.createTempFile("philox_kernel", ".ptx"); | ||
|
|
||
| // CUDA-Quellcode in temporäre Datei schreiben | ||
| try (FileWriter writer = new FileWriter(sourceFile)) { | ||
| writer.write(philox4x64KernelSource); | ||
| } | ||
|
|
||
| // nvcc Kommando zusammenbauen | ||
| List<String> command = new ArrayList<>(); | ||
| command.add("/usr/local/cuda/bin/nvcc"); | ||
| command.add("-ccbin"); | ||
| command.add("gcc-8"); | ||
| command.add("--ptx"); // PTX-Output generieren | ||
| command.add("-o"); | ||
| command.add(outputFile.getAbsolutePath()); | ||
| command.add("-I"); | ||
| command.add("./lib/random123/include"); | ||
| command.add(sourceFile.getAbsolutePath()); | ||
|
|
||
| // Prozess erstellen und ausführen | ||
| ProcessBuilder pb = new ProcessBuilder(command); | ||
| pb.redirectErrorStream(true); | ||
| Process process = pb.start(); | ||
|
|
||
| // Output des Kompilers lesen | ||
| try (BufferedReader reader = new BufferedReader( | ||
| new InputStreamReader(process.getInputStream()))) { | ||
| String line; | ||
| StringBuilder output = new StringBuilder(); | ||
| while ((line = reader.readLine()) != null) { | ||
| output.append(line).append("\n"); | ||
| } | ||
| System.out.println("Compiler Output: " + output.toString()); | ||
| } | ||
|
|
||
| // Auf Prozessende warten | ||
| int exitCode = process.waitFor(); | ||
| if (exitCode != 0) { | ||
| throw new RuntimeException("nvcc Kompilierung fehlgeschlagen mit Exit-Code: " + exitCode); | ||
| } | ||
|
|
||
| // PTX-Datei einlesen | ||
| String ptxCode = new String(readAllBytes(outputFile.toPath())); | ||
|
|
||
| // Aufräumen | ||
| sourceFile.delete(); | ||
| outputFile.delete(); | ||
|
|
||
| return ptxCode; | ||
|
|
||
| } catch (Exception e) { | ||
| throw new RuntimeException("Fehler bei der CUDA-Kompilierung: " + e.getMessage(), e); | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * Generates random numbers using the Philox4x64 algorithm | ||
| * | ||
| * @param startingCounter Initial counter value | ||
| * @param seed Random seed | ||
| * @param numElements Number of random numbers to generate | ||
| * @return Array of random numbers | ||
| */ | ||
| public CUdeviceptr Philox4x64(long startingCounter, long seed, int numElements) { | ||
| // Allocate host memory for results | ||
| // long[] hostOutput = new long[numElements]; | ||
|
|
||
| // Allocate device memory | ||
| CUdeviceptr deviceOutput = new CUdeviceptr(); | ||
| cuMemAlloc(deviceOutput, (long) numElements * Sizeof.LONG); | ||
|
|
||
| try { | ||
| // Set up kernel parameters mit Debugging | ||
| System.out.printf("numElements: %d, seed: %d, startingCounter: %d%n", | ||
| numElements, seed, startingCounter); | ||
|
|
||
| Pointer kernelParams = Pointer.to( | ||
| Pointer.to(deviceOutput), | ||
| Pointer.to(new long[] { startingCounter }), | ||
| Pointer.to(new long[] { seed }), | ||
| Pointer.to(new long[] { numElements })); | ||
|
|
||
| // Calculate grid size | ||
| int gridSize = (numElements + (blockSize * 4) - 1) / (blockSize * 4); | ||
|
|
||
| // Launch kernel mit Fehlerprüfung | ||
| int kernelResult = cuLaunchKernel(function, | ||
| gridSize, 1, 1, // Grid dimension | ||
| blockSize, 1, 1, // Block dimension | ||
| 0, null, // Shared memory size and stream | ||
| kernelParams, null // Kernel parameters and extra parameters | ||
| ); | ||
| if (kernelResult != CUresult.CUDA_SUCCESS) { | ||
| throw new RuntimeException( | ||
| "Kernel-Launch fehlgeschlagen: " + kernelResult + ", " + CUresult.stringFor(kernelResult)); | ||
| } | ||
|
|
||
| // Copy results back to host | ||
| // cuMemcpyDtoH(Pointer.to(hostOutput), deviceOutput, (long) numElements * | ||
| // Sizeof.LONG); | ||
| } finally { | ||
| // Free device memory | ||
| // cuMemFree(deviceOutput); | ||
| } | ||
|
|
||
| // return hostOutput; | ||
| return deviceOutput; | ||
| } | ||
|
|
||
| /** | ||
| * Cleans up CUDA resources | ||
| */ | ||
| public void close() { | ||
| cuModuleUnload(module); | ||
| cuCtxDestroy(context); | ||
| } | ||
|
|
||
| // Example usage | ||
| public static void main(String[] args) { | ||
| try (PhiloxRuntimeCompilationExample generator = new PhiloxRuntimeCompilationExample()) { | ||
| // Generate 1 million random numbers | ||
| int numElements = 1_000_000; | ||
| long seed = 0L; | ||
| long startingCounter = 0L; | ||
|
|
||
| CUdeviceptr randomNumbers = generator.Philox4x64(startingCounter, seed, numElements); | ||
|
|
||
| long[] elements = new long[10]; | ||
| cuMemcpyDtoH(Pointer.to(elements), randomNumbers, 10L * Sizeof.LONG); | ||
| cuMemFree(randomNumbers); | ||
|
|
||
| // Print first few numbers | ||
| System.out.println("First 10 random numbers:"); | ||
| for (int i = 0; i < 10; i++) { | ||
| System.out.printf("%d: %x%n", i, elements[i]); | ||
| } | ||
|
|
||
| int size = 10_000_000; | ||
| long start = System.currentTimeMillis(); | ||
| CUdeviceptr ptr = generator.Philox4x64(0L, 0L, size); | ||
| long end = System.currentTimeMillis(); | ||
| System.out.println("philox4x64 speed test: " + (end - start) * 1000 + " microseconds"); | ||
| cuMemFree(ptr); | ||
| Random r = new Random(); | ||
| long javaStart = System.currentTimeMillis(); | ||
| for (int i = 0; i < size; i++) { | ||
| r.nextLong(); | ||
| } | ||
| long javaEnd = System.currentTimeMillis(); | ||
| System.out.println("java speed test: " + (javaEnd - javaStart) * 1000 + " microseconds"); | ||
| System.out.println("philox4x64 is " + (double) (javaEnd - javaStart) / (double) (end - start) | ||
| + " times faster than java"); | ||
|
|
||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.