Main Content

Processor-in-the-Loop Verification of MATLAB Functions

This example shows you how to use Embedded Coder® Support Package for ARM® Cortex®-M Processors for Processor-in-the-Loop (PIL) verification of MATLAB® functions on the QEMU ARM Cortex-M3 emulator.

Introduction

In this example you will learn how to generate a PIL MEX function from a simple MATLAB function. When you run the PIL MEX function, the C-code generated from your MATLAB function runs on the QEMU ARM Cortex-M3 emulator. The results are transferred to MATLAB for numerical verification. During this process, you can profile the code execution. The PIL verification process is a crucial part of the design cycle to ensure that the behavior of the deployment code matches the design.

Prerequisites

Task 1 - Create a New Folder and Copy Relevant Files

In this example, you are going to verify a MATLAB function that adds two inputs and returns output. Create a new folder and copy relevant files which required to verify on emulated ARM Cortex-M3 hardware board using QEMU.

Navigate to new folder and create a function file, simple_addition.m, containing a function that adds two inputs and returns the result.

To see the contents of this function:

type simple_addition

The %#codegen directive in this function indicates that the MATLAB code is intended for code generation.

Task 2 - Generate PIL MEX Function from Command Line

1: Create a coder.EmbeddedCodeConfig object to generate code and create a library for MATLAB function simple_addition.

config = coder.config('lib','ecoder',true);

2: Configure the object for PIL.

config.VerificationMode = 'PIL';

3: Specify the hardware on which the generated code to be verified.

config.Hardware = coder.hardware('ARM Cortex-M3 (QEMU)');

4: Limit the stack size to reasonable size, for example 512 bytes, as default size is much larger than the memory available on the hardware.

config.StackUsageMax = 512;

5: You can enable verbose build to view the build log on command line.

config.Verbose = 1;

6: Generate library code for the simple_addition MATLAB function and the PIL interface.

inp = single(zeros(1,30));
codegen('-config', config, '-args',{inp,inp}, 'simple_addition');

In above commands, inp declares the data type and size for input arguments to MATLAB function 'simple_addition'. The codegen command generates code into following folders

  • codegen\lib\simple_addition - Standalone code for simple_addition.

  • codegen\lib\simple_addition\pil - PIL interface code for simple_addition.

Also, this step creates simple_addition_pil PIL MEX function in the current folder. This allows you to test the MATLAB code and the PIL MEX function and compare the results between both.

Task 3 - Run the PIL MEX Function

Run the PIL MEX function to compare its behavior to that of the original MATLAB function and to check for run-time errors.

u1 = single(rand(1,30));
u2 = single(rand(1,30));
y = simple_addition_pil(u1,u2);

Terminate PIL execution with the following command.

clear simple_addition_pil;

Task 4 - Verify Generated Code

To verify the numerical accuracy of the generated code, compare MATLAB results with those of the PIL MEX function:

norm(y - simple_addition(u1,u2))

Task 5 - Profile Generated Code

1. To enable code execution profiling, set CodeExecutionProfiling of the coder.EmbeddedCodeConfig coder configuration object to true before generating code for the MATLAB function in Step 6 of Task 2.

config.CodeExecutionProfiling = true;

When profiling is enabled, the generated code is instrumented with timing information. The profiling results are transferred to MATLAB when the PIL MEX function is cleared from memory.

2. To accumulate profiling results, run simple_addition function 100 times in a loop:

for k=1:100, y = simple_addition_pil(u1,u2); end

3. The profiling results are available after clearing the PIL MEX function:

clear simple_addition_pil

4. Bring up the profiling report:

ProfileResultsWithoutCRL = getCoderExecutionProfile('simple_addition');
report(ProfileResultsWithoutCRL)

Task 6 - Use 'ARM Cortex-M' Code Replacement Library (CRL)

1. To take advantage of optimized CRL for ARM Cortex-M processors, execute this command and then re-build the PIL MEX function following Step 6 of Task 2:

config.CodeReplacementLibrary = 'ARM Cortex-M (CMSIS)';

2. Run the simple_addition function 100 times in a loop to accumulate profiling results:

for k=1:100, y = simple_addition_pil(u1,u2); end

3. The profiling results are available after clearing the PIL MEX function:

clear simple_addition_pil

4. Bring up the profiling report:

ProfileResultsWithCRL = getCoderExecutionProfile('simple_addition');
report(ProfileResultsWithCRL)

Compare the profiling results to those obtained in Task 5.

Summary

This example introduced the workflow for code verification of MATLAB functions using PIL.