Main Content

Build and Run an Executable on NVIDIA Hardware Using GPU Coder App

The MATLAB® Coder™ Support Package for NVIDIA® Jetson™ and NVIDIA DRIVE® Platforms uses the GPU Coder™ product to generate CUDA® code (kernels) from the MATLAB algorithm. These kernels run on a CUDA enabled GPU platform. The support package automates the deployment of the generated CUDA code on GPU hardware platforms such as NVIDIA DRIVE or Jetson.

Learning Objectives

In this tutorial, you learn how to:

  • Prepare your MATLAB code for CUDA code generation by using the kernelfun pragma.

  • Create and set up a GPU Coder project.

  • Change settings to connect to the NVIDIA target board.

  • Generate and deploy CUDA executable on the target board.

  • Run the executable on the board and verify the results.

Before getting started with this tutorial, it is recommended to familiarize yourself with the GPU Coder App. For more information, see Code Generation by Using the GPU Coder App (GPU Coder).

Tutorial Prerequisites

Target Board Requirements

  • NVIDIA DRIVE or Jetson embedded platform.

  • Ethernet crossover cable to connect the target board and host PC (if the target board cannot be connected to a local network).

  • NVIDIA CUDA toolkit installed on the board.

  • Environment variables on the target for the compilers and libraries. For information on the supported versions of the compilers and libraries and their setup, see Install and Setup Prerequisites for NVIDIA Boards.

Development Host Requirements

  • GPU Coder for CUDA code generation. For help on getting started with GPU Coder, see Get Started with GPU Coder (GPU Coder).

  • NVIDIA CUDA toolkit on the host.

  • Environment variables on the host for the compilers and libraries. For information on the supported versions of the compilers and libraries, see Third-Party Hardware (GPU Coder). For setting up the environment variables, see Environment Variables (GPU Coder).

Example: Vector Addition

This tutorial uses a simple vector addition example to demonstrate the build and deployment workflow on NVIDIA GPUs. Create a MATLAB function myAdd.m that acts as the entry-point for code generation. Alternatively, you can use the files provided in the Getting Started with the MATLAB Coder Support Package for NVIDIA Jetson and NVIDIA DRIVE Platforms example. The easiest way to generate CUDA kernels for your MATLAB algorithm is to place the coder.gpu.kernelfun (GPU Coder) pragma in the entry-point function. When GPU Coder encounters kernelfun pragma, it attempts to parallelize the computation within this function and then maps it to the GPU.

function out = myAdd(inp1,inp2) %#codegen
coder.gpu.kernelfun();
out = inp1 + inp2;
end

Custom Main File

To generate a CUDA executable that can be deployed to an NVIDIA target, create a custom main wrapper file main.cu and its associated header file main.h. The main file calls the entry-point function in the generated code. The main file passes a vector containing the first 100 natural numbers to the entry-point function and writes the results to the myAdd.bin binary file.

 Custom main.cu File

 Custom main.h File

GPU Coder App

To open the GPU Coder app, on the MATLAB toolstrip, in the Apps tab, under Code Generation, click the GPU Coder app icon. You can also open the app by typing gpucoder (GPU Coder) in the MATLAB Command Window.

  1. The app opens the Select source files page. Select myAdd.m as the entry-point function. Click Next.

  2. In the Define Input Types window, enter myAdd(1:100,1:100) and click Autodefine Input Types, then click Next.

  3. You can initiate the Check for Run-Time Issues process or click Next to go to the Generate Code step.

  4. Set the Build type to Executable and the Hardware Board to NVIDIA Jetson.

    Generate code settings window of GPU Coder app

  5. Click More Settings, on the Custom Code panel, enter the custom main file main.cu in the field for Additional source files. The custom main file and the header file must be in the same location as the entry-point file.

    More settings window of GPU Coder app

  6. Under the Hardware panel, enter the device address, user name, password, and build folder for the board.

    Hardware pane in the more settings window of the GPU coder app

    Note

    The GPU code configuration object uses the default compute capability value specified in the GPU Code pane. To use the complete set of features supported by your CUDA GPU and to reduce numerical mismatches, set the Compute Capability to a value that matches your GPU specifications.

  7. Close the Settings window and click Generate. The software generates CUDA code and deploys the executable to the folder specified. Click Next and close the app.

Run the Executable and Verify the Results

In the MATLAB command window, use the runApplication method of the hardware object to start the executable on the target hardware.

hwobj = jetson;
pid = runApplication(hwobj,'myAdd');
### Launching the executable on the target...
Executable launched successfully with process ID 26432.
Displaying the simple runtime log for the executable...

Copy the output bin file myAdd.bin to the MATLAB environment on the host and compare the computed results with the simulation results from MATLAB.

outputFile = [hwobj.workspaceDir '/myAdd.bin']
getFile(hwobj,outputFile);

% Simulation result from the MATLAB.
simOut = myAdd(0:99,0:99);

% Read the copied result binary file from target in MATLAB.
fId  = fopen('myAdd.bin','r');
tOut = fread(fId,'double');
diff = simOut - tOut';
fprintf('Maximum deviation is: %f\n', max(diff(:)));
Maximum deviation between MATLAB Simulation output and GPU coder output on Target is: 0.000000

See Also

Functions

Objects

Related Examples

More About