Detect Overflows

This example shows how to detect overflows using the Fixed-Point Converter app. At the numerical testing stage in the conversion process, you choose to simulate the fixed-point code using scaled doubles. The app then reports which expressions in the generated code produce values that overflow the fixed-point data type.

Prerequisites

This example requires the following products:

Create a New Folder and Copy Relevant Files

  1. Create a local working folder, for example, c:\overflow.

  2. Change to the docroot\toolbox\fixpoint\examples folder. At the MATLAB command line, enter:

    cd(fullfile(docroot, 'toolbox', 'fixpoint', 'examples'))

  3. Copy the overflow.m and overflow_test.m files to your local working folder.

    It is a best practice is to create a separate test script to do pre- and post-processing, such as:

    • Loading inputs.

    • Setting up input values.

    • Outputting test results.

    For more information, see Create a Test File.

    TypeNameDescription
    Function codeoverflow.mEntry-point MATLAB function
    Test fileoverflow_test.mMATLAB script that tests overflow.m

 The overflow Function

 The overflow_test Function

Open the Fixed-Point Converter App

  1. Navigate to the work folder that contains the file for this example.

  2. On the MATLAB Toolstrip Apps tab, under Code Generation, click the app icon.

Select Source Files

  1. To add the entry-point function overflow to the project, browse to the file overflow.m, and then click Open. By default, the app saves information and settings for this project in the current folder in a file named overflow.prj.

  2. Click Next to go to the Define Input Types step.

    The app screens overflow.m for code violations and fixed-point conversion readiness issues. The app does not find issues in overflow.m.

Define Input Types

  1. On the Define Input Types page, to add overflow_test as a test file, browse to overflow_test.m, and then click Open.

  2. Click Autodefine Input Types.

    The test file runs. The app determines from the test file that the input type of b is double(1x12), x is double(256x1), and reset is logical(1x1).

  3. Click Next to go to the Convert to Fixed Point step.

Convert to Fixed Point

  1. The app generates an instrumented MEX function for your entry-point MATLAB function. The app displays compiled information — type, size, and complexity — for variables in your code. For more information, see View and Modify Variable Information.

    On the Function Replacements tab the app displays functions that are not supported for fixed-point conversion. See Running a Simulation.

  2. To view the fimath settings, click the Settings arrow . Set the fimath Product mode and Sum mode to KeepLSB. These settings model the behavior of integer operations in the C language.

  3. Click Analyze.

    The test file, overflow_test, runs. The app displays simulation minimum and maximum ranges on the Variables tab. Using the simulation range data, the software proposes fixed-point types for each variable based on the default type proposal settings, and displays them in the Proposed Type column.

  4. To convert the floating-point algorithm to fixed point, click Convert.

    The software validates the proposed types and generates a fixed-point version of the entry-point function.

    If errors and warnings occur during validation, the app displays them on the Output tab. See Validating Types.

Test Numerics and Check for Overflows

  1. Click the Test arrow . Verify that the test file is overflow_test.m. Select Use scaled doubles to detect overflows, and then click Test.

    The app runs the test file that you used to define input types to test the fixed-point MATLAB code. Because you selected to detect overflows, it also runs the simulation using scaled double versions of the proposed fixed-point types. Scaled doubles store their data in double-precision floating-point, so they carry out arithmetic in full range. Because they retain their fixed-point settings, they can report when a computation goes out of the range of the fixed-point type.

    The simulation runs. The app detects an overflow. The app reports the overflow on the Overflow tab. To highlight the expression that overflowed, click the overflow.

  2. Determine whether it was the sum or the multiplication that overflowed.

    In the fimath settings, set Product mode to FullPrecision, and then repeat the conversion and test the fixed-point code again.

    The overflow still occurs, indicating that it is the addition in the expression that is overflowing.