graphConditionalNodes: Add switch, while, if/else conditional examples and minor cleanup (#344)

This commit is contained in:
Rob Armstrong 2025-03-03 17:49:17 -08:00 committed by GitHub
parent 3e8f91d1a1
commit e7b23470d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,9 +28,9 @@
/*
* This file demonstrates the usage of conditional graph nodes with
* a series of *simple* example graphs.
*
*
* For more information on conditional nodes, see the programming guide:
*
*
* https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#conditional-graph-nodes
*
*/
@ -59,7 +59,7 @@
__global__ void ifGraphKernelA(char *dPtr, cudaGraphConditionalHandle handle)
{
// In this example, condition is set if *dPtr is odd
// In this example, condition is set if *dPtr is odd
unsigned int value = *dPtr & 0x01;
cudaGraphSetConditional(handle, value);
printf("GPU: Handle set to %d\n", value);
@ -68,21 +68,22 @@ __global__ void ifGraphKernelA(char *dPtr, cudaGraphConditionalHandle handle)
// This kernel will only be executed if the condition is true
__global__ void ifGraphKernelC(void)
{
printf("GPU: Hello from the GPU!\n");
printf("GPU: Hello from the GPU! The condition was true.\n");
}
// Setup and launch the graph
void simpleIfGraph(void)
{
cudaGraph_t graph;
cudaGraph_t graph;
cudaGraphExec_t graphExec;
cudaGraphNode_t node;
cudaGraphNode_t kernelNode;
cudaGraphNode_t conditionalNode;
void *kernelArgs[2];
// Allocate a byte of device memory to use as input
char *dPtr;
checkCudaErrors(cudaMalloc((void**)&dPtr, 1));
checkCudaErrors(cudaMalloc((void **)&dPtr, 1));
printf("simpleIfGraph: Building graph...\n");
cudaGraphCreate(&graph, 0);
@ -92,26 +93,26 @@ void simpleIfGraph(void)
cudaGraphConditionalHandleCreate(&handle, graph);
// Use a kernel upstream of the conditional to set the handle value
cudaGraphNodeParams params = { cudaGraphNodeTypeKernel };
params.kernel.func = (void *)ifGraphKernelA;
params.kernel.gridDim.x = params.kernel.gridDim.y = params.kernel.gridDim.z = 1;
params.kernel.blockDim.x = params.kernel.blockDim.y = params.kernel.blockDim.z = 1;
cudaGraphNodeParams params = {cudaGraphNodeTypeKernel};
params.kernel.func = (void *)ifGraphKernelA;
params.kernel.gridDim = 1;
params.kernel.blockDim = 1;
params.kernel.kernelParams = kernelArgs;
kernelArgs[0] = &dPtr;
kernelArgs[1] = &handle;
checkCudaErrors(cudaGraphAddNode(&node, graph, NULL, 0, &params));
checkCudaErrors(cudaGraphAddNode(&kernelNode, graph, NULL, 0, &params));
cudaGraphNodeParams cParams = { cudaGraphNodeTypeConditional };
cudaGraphNodeParams cParams = {cudaGraphNodeTypeConditional};
cParams.conditional.handle = handle;
cParams.conditional.type = cudaGraphCondTypeIf;
cParams.conditional.size = 1;
checkCudaErrors(cudaGraphAddNode(&node, graph, &node, 1, &cParams));
cParams.conditional.type = cudaGraphCondTypeIf;
cParams.conditional.size = 1;
checkCudaErrors(cudaGraphAddNode(&conditionalNode, graph, &kernelNode, 1, &cParams));
cudaGraph_t bodyGraph = cParams.conditional.phGraph_out[0];
// Populate the body of the conditional node
cudaGraphNode_t bodyNode;
params.kernel.func = (void *)ifGraphKernelC;
params.kernel.func = (void *)ifGraphKernelC;
params.kernel.kernelParams = nullptr;
checkCudaErrors(cudaGraphAddNode(&bodyNode, bodyGraph, NULL, 0, &params));
@ -119,13 +120,13 @@ void simpleIfGraph(void)
// Initialize device memory and launch the graph
checkCudaErrors(cudaMemset(dPtr, 0, 1)); // Set dPtr to 0
printf("Host: Launching graph with conditional value set to false\n");
printf("Host: Launching graph with device memory set to 0\n");
checkCudaErrors(cudaGraphLaunch(graphExec, 0));
checkCudaErrors(cudaDeviceSynchronize());
// Initialize device memory and launch the graph
checkCudaErrors(cudaMemset(dPtr, 1, 1)); // Set dPtr to 1
printf("Host: Launching graph with conditional value set to true\n");
printf("Host: Launching graph with device memory set to 1\n");
checkCudaErrors(cudaGraphLaunch(graphExec, 0));
checkCudaErrors(cudaDeviceSynchronize());
@ -158,7 +159,8 @@ __global__ void doWhileEmptyKernel(void)
__global__ void doWhileLoopKernel(char *dPtr, cudaGraphConditionalHandle handle)
{
if (--(*dPtr) == 0) {
if (--(*dPtr) == 0)
{
cudaGraphSetConditional(handle, 0);
}
printf("GPU: counter = %d\n", *dPtr);
@ -166,13 +168,13 @@ __global__ void doWhileLoopKernel(char *dPtr, cudaGraphConditionalHandle handle)
void simpleDoWhileGraph(void)
{
cudaGraph_t graph;
cudaGraph_t graph;
cudaGraphExec_t graphExec;
cudaGraphNode_t node;
cudaGraphNode_t conditionalNode;
// Allocate a byte of device memory to use as input
char *dPtr;
checkCudaErrors(cudaMalloc((void**)&dPtr, 1));
checkCudaErrors(cudaMalloc((void **)&dPtr, 1));
printf("simpleDoWhileGraph: Building graph...\n");
checkCudaErrors(cudaGraphCreate(&graph, 0));
@ -180,18 +182,18 @@ void simpleDoWhileGraph(void)
cudaGraphConditionalHandle handle;
checkCudaErrors(cudaGraphConditionalHandleCreate(&handle, graph, 1, cudaGraphCondAssignDefault));
cudaGraphNodeParams cParams = { cudaGraphNodeTypeConditional };
cudaGraphNodeParams cParams = {cudaGraphNodeTypeConditional};
cParams.conditional.handle = handle;
cParams.conditional.type = cudaGraphCondTypeWhile;
cParams.conditional.size = 1;
checkCudaErrors(cudaGraphAddNode(&node, graph, NULL, 0, &cParams));
cParams.conditional.type = cudaGraphCondTypeWhile;
cParams.conditional.size = 1;
checkCudaErrors(cudaGraphAddNode(&conditionalNode, graph, NULL, 0, &cParams));
cudaGraph_t bodyGraph = cParams.conditional.phGraph_out[0];
cudaStream_t captureStream;
checkCudaErrors(cudaStreamCreate(&captureStream));
checkCudaErrors(cudaStreamBeginCaptureToGraph(captureStream, bodyGraph, nullptr, nullptr, 0, cudaStreamCaptureModeRelaxed));
checkCudaErrors(cudaStreamBeginCaptureToGraph(captureStream, bodyGraph, nullptr, nullptr, 0, cudaStreamCaptureModeGlobal));
doWhileEmptyKernel<<<1, 1, 0, captureStream>>>();
doWhileEmptyKernel<<<1, 1, 0, captureStream>>>();
doWhileLoopKernel<<<1, 1, 0, captureStream>>>(dPtr, handle);
@ -214,29 +216,30 @@ void simpleDoWhileGraph(void)
printf("simpleDoWhileGraph: Complete\n\n");
}
/*
* Create a graph containing a conditional while loop using stream capture.
* This demonstrates how to insert a conditional node into a stream which is
* being captured. The graph consists of a kernel node followed by a conditional
* while node which contains a single kernel node:
* being captured. The graph consists of a kernel node, A, followed by a
* conditional while node, B, followed by a kernel node, D. The conditional
* body is populated by a single kernel node, C:
*
* A -> B [ C ]
* A -> B [ C ] -> D
*
* The same kernel will be used for both nodes A and C. This kernel will test
* a device memory location and set the condition when the location is non-zero.
* We must run the kernel before the loop as well as inside the loop in order
* to behave like a while loop. We need to evaluate the device memory location
* before the conditional node is evaluated in order to set the condition variable
* properly. Because we're using a kernel upstream of the conditional node,
* there is no need to use the handle default value to initialize the conditional
* value.
* to behave like a while loop as opposed to a do-while loop. We need to evaluate
* the device memory location before the conditional node is evaluated in order
* to set the condition variable properly. Because we're using a kernel upstream
* of the conditional node, there is no need to use the handle default value to
* initialize the conditional value.
*/
__global__ void capturedWhileKernel(char *dPtr, cudaGraphConditionalHandle handle)
{
printf("GPU: counter = %d\n", *dPtr);
if (*dPtr) {
if (*dPtr)
{
(*dPtr)--;
}
cudaGraphSetConditional(handle, *dPtr);
@ -259,13 +262,13 @@ void capturedWhileGraph(void)
// Allocate a byte of device memory to use as input
char *dPtr;
checkCudaErrors(cudaMalloc((void**)&dPtr, 1));
checkCudaErrors(cudaMalloc((void **)&dPtr, 1));
printf("capturedWhileGraph: Building graph...\n");
cudaStream_t captureStream;
checkCudaErrors(cudaStreamCreate(&captureStream));
checkCudaErrors(cudaStreamBeginCapture(captureStream, cudaStreamCaptureModeRelaxed));
checkCudaErrors(cudaStreamBeginCapture(captureStream, cudaStreamCaptureModeGlobal));
// Obtain the handle of the graph
checkCudaErrors(cudaStreamGetCaptureInfo(captureStream, &status, NULL, &graph, &dependencies, &numDependencies));
@ -281,17 +284,17 @@ void capturedWhileGraph(void)
checkCudaErrors(cudaStreamGetCaptureInfo(captureStream, &status, NULL, &graph, &dependencies, &numDependencies));
// Insert conditional node B
cudaGraphNode_t node;
cudaGraphNodeParams cParams = { cudaGraphNodeTypeConditional };
cudaGraphNode_t conditionalNode;
cudaGraphNodeParams cParams = {cudaGraphNodeTypeConditional};
cParams.conditional.handle = handle;
cParams.conditional.type = cudaGraphCondTypeWhile;
cParams.conditional.size = 1;
checkCudaErrors(cudaGraphAddNode(&node, graph, dependencies, numDependencies, &cParams));
cParams.conditional.type = cudaGraphCondTypeWhile;
cParams.conditional.size = 1;
checkCudaErrors(cudaGraphAddNode(&conditionalNode, graph, dependencies, numDependencies, &cParams));
cudaGraph_t bodyGraph = cParams.conditional.phGraph_out[0];
// Update stream capture dependencies to account for the node we manually added
checkCudaErrors(cudaStreamUpdateCaptureDependencies(captureStream, &node, 1, cudaStreamSetCaptureDependencies));
checkCudaErrors(cudaStreamUpdateCaptureDependencies(captureStream, &conditionalNode, 1, cudaStreamSetCaptureDependencies));
// Insert kernel node D
capturedWhileEmptyKernel<<<1, 1, 0, captureStream>>>();
@ -303,7 +306,7 @@ void capturedWhileGraph(void)
cudaStream_t bodyStream;
checkCudaErrors(cudaStreamCreate(&bodyStream));
checkCudaErrors(cudaStreamBeginCaptureToGraph(bodyStream, bodyGraph, nullptr, nullptr, 0, cudaStreamCaptureModeRelaxed));
checkCudaErrors(cudaStreamBeginCaptureToGraph(bodyStream, bodyGraph, nullptr, nullptr, 0, cudaStreamCaptureModeGlobal));
// Insert kernel node C
capturedWhileKernel<<<1, 1, 0, bodyStream>>>(dPtr, handle);
@ -333,24 +336,238 @@ void capturedWhileGraph(void)
printf("capturedWhileGraph: Complete\n\n");
}
/*
* Create a graph containing two nodes.
* The first node, A, is a kernel and the second node, B, is a conditional IF node containing two graphs.
* The first graph within the conditional will be executed when the condition is true, while the second
* graph will be executed when the conditional is false.
* The kernel sets the condition variable to true if a device memory location
* contains an odd number. Otherwise the condition variable is set to false.
* There is a single kernel(C & D) within each conditional body which prints a message.
*
* A -> B [ C | D ]
*
* This example requires CUDA >= 12.8.
*/
int main(int argc, char **argv) {
// This kernel will only be executed if the condition is false
__global__ void ifGraphKernelD(void)
{
printf("GPU: Hello from the GPU! The condition was false.\n");
}
// Setup and launch the graph
void simpleIfElseGraph(void)
{
cudaGraph_t graph;
cudaGraphExec_t graphExec;
cudaGraphNode_t kernelNode;
cudaGraphNode_t conditionalNode;
void *kernelArgs[2];
// Allocate a byte of device memory to use as input
char *dPtr;
checkCudaErrors(cudaMalloc((void **)&dPtr, 1));
printf("simpleIfElseGraph: Building graph...\n");
cudaGraphCreate(&graph, 0);
// Create conditional handle.
cudaGraphConditionalHandle handle;
cudaGraphConditionalHandleCreate(&handle, graph);
// Use a kernel upstream of the conditional to set the handle value
cudaGraphNodeParams params = {cudaGraphNodeTypeKernel};
params.kernel.func = (void *)ifGraphKernelA;
params.kernel.gridDim = 1;
params.kernel.blockDim = 1;
params.kernel.kernelParams = kernelArgs;
kernelArgs[0] = &dPtr;
kernelArgs[1] = &handle;
checkCudaErrors(cudaGraphAddNode(&kernelNode, graph, NULL, 0, &params));
cudaGraphNodeParams cParams = {cudaGraphNodeTypeConditional};
cParams.conditional.handle = handle;
cParams.conditional.type = cudaGraphCondTypeIf;
cParams.conditional.size = 2; // Set size to 2 to indicate an ELSE graph will be used
checkCudaErrors(cudaGraphAddNode(&conditionalNode, graph, &kernelNode, 1, &cParams));
cudaGraph_t bodyGraph = cParams.conditional.phGraph_out[0];
// Populate the body of the first graph in the conditional node, executed if the condition is true
cudaGraphNode_t trueBodyNode;
params.kernel.func = (void *)ifGraphKernelC;
params.kernel.kernelParams = nullptr;
checkCudaErrors(cudaGraphAddNode(&trueBodyNode, bodyGraph, NULL, 0, &params));
// Populate the body of the second graph in the conditional node, executed if the condition is false
bodyGraph = cParams.conditional.phGraph_out[1];
cudaGraphNode_t falseBodyNode;
params.kernel.func = (void *)ifGraphKernelD;
params.kernel.kernelParams = nullptr;
checkCudaErrors(cudaGraphAddNode(&falseBodyNode, bodyGraph, NULL, 0, &params));
checkCudaErrors(cudaGraphInstantiate(&graphExec, graph, NULL, NULL, 0));
// Initialize device memory and launch the graph
checkCudaErrors(cudaMemset(dPtr, 0, 1)); // Set dPtr to 0
printf("Host: Launching graph with device memory set to 0\n");
checkCudaErrors(cudaGraphLaunch(graphExec, 0));
checkCudaErrors(cudaDeviceSynchronize());
// Initialize device memory and launch the graph
checkCudaErrors(cudaMemset(dPtr, 1, 1)); // Set dPtr to 1
printf("Host: Launching graph with device memory set to 1\n");
checkCudaErrors(cudaGraphLaunch(graphExec, 0));
checkCudaErrors(cudaDeviceSynchronize());
// Cleanup
checkCudaErrors(cudaGraphExecDestroy(graphExec));
checkCudaErrors(cudaGraphDestroy(graph));
checkCudaErrors(cudaFree(dPtr));
printf("simpleIfElseGraph: Complete\n\n");
}
/*
* Create a graph containing two nodes.
* The first node, A, is a kernel and the second node, B, is a conditional SWITCH node containing four graphs.
* The nth graph within the conditional will be executed when the condition is n. If conditional >= n,
* no graph will be executed.
* Kernel A sets the condition variable to the value stored in a device memory location.
* This device location is updated from the host with each launch to demonstrate the behavior.
* There is a single kernel(nodes C, D, E and F) within each conditional body which prints a message.
*
* A -> B [ C | D | E | F ]
*
* This example requires CUDA >= 12.8.
*/
__global__ void switchGraphKernelA(char *dPtr, cudaGraphConditionalHandle handle)
{
unsigned int value = *dPtr;
cudaGraphSetConditional(handle, value);
printf("GPU: Handle set to %d\n", value);
}
__global__ void switchGraphKernelC(void)
{
printf("GPU: Hello from switchGraphKernelC(), running on the GPU!\n");
}
__global__ void switchGraphKernelD(void)
{
printf("GPU: Hello from switchGraphKernelD(), running on the GPU!\n");
}
__global__ void switchGraphKernelE(void)
{
printf("GPU: Hello from switchGraphKernelE(), running on the GPU!\n");
}
__global__ void switchGraphKernelF(void)
{
printf("GPU: Hello from switchGraphKernelF(), running on the GPU!\n");
}
// Setup and launch the graph
void simpleSwitchGraph(void)
{
cudaGraph_t graph;
cudaGraphExec_t graphExec;
cudaGraphNode_t kernelNode;
cudaGraphNode_t conditionalNode;
void *kernelArgs[2];
// Allocate a byte of device memory to use as input
char *dPtr;
checkCudaErrors(cudaMalloc((void **)&dPtr, 1));
printf("simpleSwitchGraph: Building graph...\n");
cudaGraphCreate(&graph, 0);
// Create conditional handle.
cudaGraphConditionalHandle handle;
cudaGraphConditionalHandleCreate(&handle, graph);
// Use a kernel upstream of the conditional to set the handle value
cudaGraphNodeParams params = {cudaGraphNodeTypeKernel};
params.kernel.func = (void *)switchGraphKernelA;
params.kernel.gridDim = 1;
params.kernel.blockDim = 1;
params.kernel.kernelParams = kernelArgs;
kernelArgs[0] = &dPtr;
kernelArgs[1] = &handle;
checkCudaErrors(cudaGraphAddNode(&kernelNode, graph, NULL, 0, &params));
cudaGraphNodeParams cParams = {cudaGraphNodeTypeConditional};
cParams.conditional.handle = handle;
cParams.conditional.type = cudaGraphCondTypeSwitch;
cParams.conditional.size = 4;
checkCudaErrors(cudaGraphAddNode(&conditionalNode, graph, &kernelNode, 1, &cParams));
// Populate the four graph bodies within the SWITCH conditional graph
cudaGraphNode_t bodyNode;
params.kernel.kernelParams = nullptr;
params.kernel.func = (void *)switchGraphKernelC;
checkCudaErrors(cudaGraphAddNode(&bodyNode, cParams.conditional.phGraph_out[0], NULL, 0, &params));
params.kernel.func = (void *)switchGraphKernelD;
checkCudaErrors(cudaGraphAddNode(&bodyNode, cParams.conditional.phGraph_out[1], NULL, 0, &params));
params.kernel.func = (void *)switchGraphKernelE;
checkCudaErrors(cudaGraphAddNode(&bodyNode, cParams.conditional.phGraph_out[2], NULL, 0, &params));
params.kernel.func = (void *)switchGraphKernelF;
checkCudaErrors(cudaGraphAddNode(&bodyNode, cParams.conditional.phGraph_out[3], NULL, 0, &params));
checkCudaErrors(cudaGraphInstantiate(&graphExec, graph, NULL, NULL, 0));
for (char i = 0; i < 5; i++)
{
// Initialize device memory and launch the graph
checkCudaErrors(cudaMemset(dPtr, i, 1));
printf("Host: Launching graph with device memory set to %d\n", i);
checkCudaErrors(cudaGraphLaunch(graphExec, 0));
checkCudaErrors(cudaDeviceSynchronize());
}
// Cleanup
checkCudaErrors(cudaGraphExecDestroy(graphExec));
checkCudaErrors(cudaGraphDestroy(graph));
checkCudaErrors(cudaFree(dPtr));
printf("simpleSwitchGraph: Complete\n\n");
}
int main(int argc, char **argv)
{
int device = findCudaDevice(argc, (const char **)argv);
int driverVersion = 0;
cudaDriverGetVersion(&driverVersion);
printf("Driver version is: %d.%d\n", driverVersion / 1000,
(driverVersion % 100) / 10);
(driverVersion % 100) / 10);
if (driverVersion < 12030) {
printf("Waiving execution as driver does not support Graph Conditional Nodes\n");
exit(EXIT_WAIVED);
if (driverVersion < 12030)
{
printf("Skipping execution as driver does not support Graph Conditional Nodes\n");
return 0;
}
simpleIfGraph();
simpleDoWhileGraph();
capturedWhileGraph();
if (driverVersion < 12080)
{
printf("Skipping execution as driver does not support if/else and switch type Graph Conditional Nodes\n");
return 0;
}
simpleIfElseGraph();
simpleSwitchGraph();
return 0;
}