Main Content

Generate SIMD Code from MATLAB Functions for ARM Platforms

You can generate single instruction, multiple data (SIMD) code from certain MATLAB® functions by using ARM® Neon technology. SIMD is a computing paradigm in which a single instruction processes multiple data. Many modern processors have SIMD instructions that, for example, perform several additions or multiplications at once. For computationally intensive operations on supported blocks, SIMD intrinsics can significantly improve the performance of the generated code on ARM Cortex®-A platforms.

To generate SIMD code for Intel® platforms, see Generate SIMD Code from MATLAB Functions for Intel Platforms.

MATLAB Functions That Support SIMD Code for ARM

When certain conditions are met, you can generate SIMD code by using ARM Neon technology. This table lists MATLAB functions that support SIMD code generation. The table also details the conditions under which the support is available.

MATLAB FunctionConditions
plus
  • The input argument is of data type single, int8, int16, int32, int64, uint8, uint16, uint32, or uint64.

  • For integer data types, the value of Saturate on integer overflow is set to No.

minus
  • The input argument is of data type single, int8, int16, int32, int64, uint8, uint16, uint32, or uint64.

  • For integer data types, the value of Saturate on integer overflow is set to No.

times
  • The input argument is of data type single, int8, int16, int32, uint8, uint16, or uint32.

  • For integer data types, the value of Saturate on integer overflow is set to No.

maxThe input argument is of data type single, int8, int16, int32, uint8, uint16, or uint32.
minThe input argument is of data type single, int8, int16, int32, uint8, uint16, or uint32.
bitandThe input argument is of data type int8, int16, int32, int64, uint8, uint16, or uint32.
bitorThe input argument is of data type int8, int16, int32, int64, uint8, uint16, or uint32.
bitxorThe input argument is of data type int8, int16, int32, int64, uint8, uint16, or uint32.
bitshiftThe input argument is of data type int8, int16, int32, or int64.

If you have a DSP System Toolbox™, you can generate SIMD code from certain MATLAB System objects. For more information, see System objects in DSP System Toolbox that Support SIMD Code Generation (DSP System Toolbox).

Generate SIMD Code Versus Plain C Code

Consider the MATLAB function dynamic. This function consists of addition and multiplication operations between the variable-size arrays A and B. These arrays have a data type of single and an upper bound of 100 x 100.

function C = dynamic(A, B)
   assert(all(size(A) <= [100 100]));
   assert(all(size(B) <= [100 100]));
   assert(isa(A, 'single'));
   assert(isa(B, 'single'));

   C = zeros(size(A), 'like', A);
   for i = 1:numel(A)
       C(i) = (A(i) .* B(i)) + (A(i) .* B(i));
   end
end

To generate plain C code at the command line:

  1. For C library code generation, create a code generation configuration object.

    cfg = coder.config('lib');
  2. Set the coder.HardwareImplementation object ProdHWDeviceType property to 'ARM Compatible->ARM Cortex-A (32-bit)' or 'ARM Compatible->ARM Cortex-A (64-bit)'.

    cfg.HardwareImplementation.ProdHWDeviceType = 'ARM Compatible->ARM Cortex-A (32-bit)';

    If you are using the MATLAB Coder app to generate code:

    • Set the Hardware Board parameter to None-Select device below, NVIDIA Drive, or NVIDIA Jetson.

    • Set the Device vendor parameter to ARM Compatible.

    • Set the Device type to ARM Cortex-A (32-bit) or ARM Cortex-A (64-bit).

  3. To generate a static library in the default location, codegen\lib\dynamic, use the codegen function.

    codegen('-config', cfg, 'dynamic');

  4. In the list of generated files, click dynamic.c. In the plain (non-SIMD) C code, each loop iteration produces one result.

    void dynamic(const float A_data[], const int A_size[2], const float B_data[],
                 const int B_size[2], float C_data[], int C_size[2])
    {
      int i;
      int loop_ub_tmp;
      (void)B_size;
      C_size[0] = (signed char)A_size[0];
      C_size[1] = (signed char)A_size[1];
      loop_ub_tmp = (signed char)A_size[0] * (signed char)A_size[1];
      if (loop_ub_tmp - 1 >= 0) {
        memset(&C_data[0], 0, (unsigned int)loop_ub_tmp * sizeof(float));
      }
      loop_ub_tmp = A_size[0] * A_size[1];
      for (i = 0; i < loop_ub_tmp; i++) {
        float f;
        f = A_data[i] * B_data[i];
        C_data[i] = f + f;
      }
    }

To generate SIMD C code at the command line:

  1. For C library code generation, use the coder.config function to create a code generation configuration object.

    cfg = coder.config('lib');
  2. Set the coder.HardwareImplementation object ProdHWDeviceType property to 'ARM Compatible->ARM Cortex-A (32-bit)' or 'ARM Compatible->ARM Cortex-A (64-bit)'.

    cfg.HardwareImplementation.ProdHWDeviceType = 'ARM Compatible->ARM Cortex-A (32-bit)';

    If you are using the MATLAB Coder app to generate code:

    • Set the Hardware Board parameter to None-Select device below, NVIDIA Drive, or NVIDIA Jetson.

    • Set the Device vendor parameter to ARM Compatible.

    • Set the Device type to ARM Cortex-A (32-bit) or ARM Cortex-A (64-bit).

  3. Set the InstructionSetExtensions property to Neon v7. The Neon v7 instruction set supports target hardware ARMv7 and above, including ARMv8 and ARMv9.

    cfg.InstructionSetExtensions = 'Neon v7';
    

    If you are using the MATLAB Coder app to generate code, on the Speed tab, set the Leverage target hardware instruction set extensions parameter to Neon v7.

  4. Optionally, select the OptimizeReductions parameter to generate SIMD code for reduction operations such as sum and product functions.

    cfg.OptimizeReductions = 'on';
    

    If you are using the MATLAB Coder app to generate code, on the Speed tab, select the Optimize reductions parameter.

  5. Optionally, select the FMA parameter to generate SIMD code for fused multiply add operations.

    cfg.InstructionSetExtensionsConfig.FMA = 'on';
    

    If you are using the MATLAB Coder app to generate code, on the Speed tab, select the FMA parameter.

  6. Use the codegen function to generate a static library in the default location, codegen\lib\dynamic.

    codegen('-config', cfg, 'dynamic');
    
  7. In the list of generated files, click dynamic.c.

    void dynamic(const float A_data[], const int A_size[2], const float B_data[],
                 const int B_size[2], float C_data[], int C_size[2])
    {
      int i;
      int loop_ub_tmp;
      int scalarLB;
      int vectorUB;
      (void)B_size;
      C_size[0] = (signed char)A_size[0];
      C_size[1] = (signed char)A_size[1];
      loop_ub_tmp = (signed char)A_size[0] * (signed char)A_size[1];
      if (loop_ub_tmp - 1 >= 0) {
        memset(&C_data[0], 0, (unsigned int)loop_ub_tmp * sizeof(float));
      }
      loop_ub_tmp = A_size[0] * A_size[1];
      scalarLB = (loop_ub_tmp / 4) << 2;
      vectorUB = scalarLB - 4;
      for (i = 0; i <= vectorUB; i += 4) {
        vst1q_f32(&C_data[i],
                  vmlaq_f32(vmulq_f32(vld1q_f32(&A_data[i]), vld1q_f32(&B_data[i])),
                            vld1q_f32(&A_data[i]), vld1q_f32(&B_data[i])));
      }
      for (i = scalarLB; i < loop_ub_tmp; i++) {
        float f;
        f = A_data[i] * B_data[i];
        C_data[i] = f + f;
      }
    }

The SIMD instructions are the intrinsic functions that start with the identifier v. The functions process multiple data in a single iteration of the loop because the loop increments by four for single data types. For models that process more data and are computationally more intensive than this one, the presence of SIMD instructions can significantly reduce the code execution time.

The second for loop is in the generated code because the for loop that contains SIMD code must be divisible by four for single data types. The second loop processes the remainder of the data.