Generate and Deploy SIMD Optimized Code for Interpolated FIR Filter on Intel Desktops - MATLAB & Simulink (original) (raw)
Main Content
This example shows how to generate and deploy optimized code for an interpolated finite impulse response (IFIR) filter within an Intel(R) desktop environment using Simulink(R).
IFIR consists of FIR Decimation, Discrete FIR Filter (Simulink), and FIR Interpolation blocks. The FIR Decimation block downconverts the input signal to a lower sampling rate. The FIR Filter block filters the signal, and the FIR Interpolation block restores the sampling rate of the filtered output to the original sampling rate of the input signal.
Note: This workflow requires an Embedded Coder(R) license.
Generate optimized code using the AVX2 instruction set extensions supported by your Intel processor. These instruction set extensions have single instruction multiple data (SIMD) commands that allow you to process multiple data points simultaneously, substantially decreasing execution time and improving the performance of the generated code. Select one of these instruction set extensions based on the vector extension your processor supports. For more information, see Intel Instruction Set Extensions. This example supports the following extensions:
- AVX2
- FMA
- SSE2
- AVX512F
Alternatively, you can also use the Intel AVX2 code replacement library to generate optimized code. For more information on this workflow, see Use Intel AVX2 Code Replacement Library to Generate SIMD Code from Simulink Blocks.
This example uses the SIL/PIL Manager (Embedded Coder) application to conduct software-in-the-loop (SIL) simulations that collect the execution time metrics of the generated code. Compare the execution time of the generated SIMD code with plain C code. The generated SIMD code executes much faster compared to the plain C code.
The model used in this example runs on Microsoft(R) Windows(R) and Linux environments only.
Design Interpolated FIR (IFIR) for Lowpass Response
The first step is to design the IFIR filter blocks in the model.
To open the model included with this example, execute the following command.
mdl = 'ifir_example'; open_system(mdl);
Use the ifir function to get the FIR Decimation g(z)
, FIR filter h(z)
, and FIR interpolation g(z)
coefficients for the specified lowpass response parameters. The ifir function designs a periodic filter h(z)
, which provides the coefficients for the Discrete FIR Filter block. It also designs an image-suppressor filter g(z)
, which provides the coefficients for the FIR Decimation and FIR Interpolation blocks in the model.
Set the passband ripple to 0.005 dB, stopband attenuation to 80 dB, interpolation factor to 7, passband edge frequency to 0.1 π rad/sample, and stopband edge frequency to 0.101 π rad/sample.
Apass = 0.005; % dB Astop = 80; % dB Fstop = .101; M = 7; F = [.1 Fstop];
Use convertmagunits
to convert the passband ripple and stop band attenuation from dB to the linear scale. Use the linear values of passband ripple and stopband attenuation in a 1-by-2 vector to design the h(z)
and g(z)
filters, thereby deriving the filter coefficients.
A = [convertmagunits(Apass,'db','linear','pass') convertmagunits(Astop,'db','linear','stop')]; [h,g] = ifir(M,'low',F,A);
The code to compute h(z) and g(z) is provided in the PreLoadFcn
callback of the model as the FIR decimation, FIR Interpolation, and FIR Filter blocks use these coefficients as parameters. To open PreLoadFcn
callback, follow these steps:
- In the Simulink Toolstrip, on the Modeling tab, in the Design gallery, click Property Inspector.
- With no selection at the top level of the model, on the Properties tab, in the Callbacks section, select
PreLoadFcn
.
To distinguish the performance metrics of the IFIR filter in the execution profile report, create an atomic subsystem consisting of the FIR decimation, FIR Interpolation, and FIR Filter blocks. To create a subsystem, select the block, right-click it, then click on the option Create Subsystem from Selection. To make the subsystem atomic, select the subsystem block, go to the Subsystem Block tab and click Atomic Subsystem.
Simulate IFIR model
Simulate the IFIR model by running these commands. Set the default simulation time to 100 s. View the noisy input signal and the interpolated FIR filter output in the spectrum analyzer.
set_param(mdl,'SimulationMode', 'normal'); sim(mdl);
Configure IFIR Simulink Model to Generate Optimized Code
You can configure the model interactively using Configuration Parameters dialog box from the Simulink model toolstrip, or programmatically using the MATLAB command line interface.
Configure Model Using UI
To configure a Simulink model to generate SIMD code using the Intel AVX2 instruction set extensions, complete these steps
- In the Apps tab of the Simulink model toolstrip, click the Embedded Coder app. In the C Code tab that opens, click Settings.
- In the Hardware Implementation pane, set the Device vendor parameter to
Intel
. Set the Device type parameter tox86-64(Windows 64) or
x86-64(Linux 64)
based on your desktop environment.
In Code Generation pane:
- Set the System target file to ert.tlc.
- Set the Build configuration to Faster Runs to prioritize execution speed.
Under Code Generation, in the Optimization pane:
- Set the Leverage target hardware instruction set extensions to AVX2.
- Select the Optimize reductions option.
- Set the Level to Maximum and Priority to Maximize execution speed to maximize the execution speed.
To see which blocks trigger code replacement, you can set the following options under Code Generation in the Report pane:
- Enable Create code generation report.
- Enable Open report automatically.
- Enable Summarize which blocks triggered code replacements.
Use Programmatic Approach to Configure the Model
Alternatively, you can set all the configurations using set_param
commands.
Set the Device vendor parameter to Intel
. Set the Device type parameter to x86-64(Windows 64) or
x86-64(Linux 64)
based on your desktop environment.
if strcmp(computer('arch'),'win64') set_param(mdl,'ProdHWDeviceType','Intel->x86-64 (Windows64)'); elseif strcmp(computer('arch'),'glnxa64') set_param(mdl,'ProdHWDeviceType','Intel->x86-64 (Linux 64)'); end
Select ert.tlc
as the system target file to optimize the code for embedded real-time systems, and choose Faster Runs
for the build configuration to prioritize execution speed.
set_param(mdl,'SystemTargetFile','ert.tlc'); set_param(mdl,'BuildConfiguration','Faster Runs');
Set the code replacement libraries to none and set the instruction set to AVX2. Set the optimization level to level 2 (maximum) and optimization priority to maximum to maximize the execution speed.
set_param(mdl,'CodeReplacementLibrary','None'); set_param(mdl,'InstructionSetExtensions','AVX2'); set_param(mdl,'OptimizeReductions','On'); set_param(mdl,'OptimizationLevel','level2'); set_param(mdl,'OptimizationPriority','Speed');
Configure to generate the code generation report and show blocks that triggered code replacement.
set_param(mdl,'GenerateReport','On'); set_param(mdl,'LaunchReport','On'); set_param(mdl,'GenerateCodeReplacementReport','On');
To configure a Simulink model to generate SIMD code using the Intel AVX2 code replacement library, see Use Intel AVX2 Code Replacement Library to Generate SIMD Code from Simulink Blocks.
Simulate on Target Using SIL/PIL Manager
Use the SIL/PIL Manager app to simulate on target and to get the execution time of the generated code.
Follow these steps to perform SIL simulation:
- Go to Apps > SIL/PIL Manager.
- Set Mode to Automated Verification.
- Set SIL/PIL Mode to Software-in-loop (SIL).
- Click Run Verification.
Once the artifacts are built successfully, you can check replacements from the code generation report. Alternatively, you can execute the following command to run the SIL simulation.
set_param(mdl,'SimulationMode', 'software-in-the-loop (sil)'); sim(mdl);
Skipped unpacking from Simulink cache file "ifir_example.slxc" because the file does not have the relevant build artifacts.
Searching for referenced models in model 'ifir_example'.
Total of 1 models to build.
Starting build procedure for: ifir_example
Generating code and artifacts to 'Model specific' folder structure
Generating code into build folder: /tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw
Invoking Target Language Compiler on ifir_example.rtw
Using System Target File: /mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert/ert.tlc
Loading TLC function libraries
........
Generating TLC interface API for custom data
Initial pass through model to cache user defined code
.
Caching model source code
...........................................................
Writing header file ifir_example_types.h
.
Writing header file ifir_example.h
Writing source file ifir_example.c
Writing header file rtwtypes.h
Writing header file Interpolated_FIR.h
Writing source file Interpolated_FIR.c
.
Writing header file ifir_example_private.h
Writing source file ifir_example_data.c
Writing header file rtmodel.h
TLC code generation complete (took 4.317s).
Creating HTML report file index.html
Saving binary information cache.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example.mk' ...
Building 'ifir_example': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example.mk buildobj
gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "Interpolated_FIR.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/Interpolated_FIR.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example_data.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example_data.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_profile_timer.o" "coder_profile_timer.c"
Successfully generated all binary outputs.
gmake: Nothing to be done for `buildobj'.
Successful completion of build procedure for: ifir_example
Simulink cache artifacts for 'ifir_example' were created in '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example.slxc'.
Build Summary
Top model targets:
Model Build Reason Status Build Duration
ifir_example Information cache folder or artifacts were missing. Code generated and compiled. 0h 0m 35.212s
1 of 1 models built (0 models already up to date) Build duration: 0h 0m 37.569s
Preparing to start SIL simulation ...
Building with 'gcc'. MEX completed successfully.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/lib/ifir_example_ca.mk' ...
Building 'ifir_example_ca': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example_ca.mk all
gcc -c -fwrapv -fPIC -O3 -mavx2 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_assumptions_hwimpl.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_hwimpl.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_assumptions_flt.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_flt.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example_ca.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/ifir_example_ca.c"
Creating static library ./ifir_example_ca.a ...
ar ruvs ./ifir_example_ca.a coder_assumptions_hwimpl.o coder_assumptions_flt.o ifir_example_ca.o
ar: u' modifier ignored since
D' is the default (see `U')
ar: creating ./ifir_example_ca.a
a - coder_assumptions_hwimpl.o
a - coder_assumptions_flt.o
a - ifir_example_ca.o
Created: ./ifir_example_ca.a
Successfully generated all binary outputs.
gmake: Nothing to be done for `all'.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/ifir_example.mk' ...
Building 'ifir_example': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example.mk all
gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_interface.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/xil_interface.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "sil_main.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/sil_main.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "rtiostream_tcpip.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/rtiostreamtcpip/rtiostream_tcpip.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_interface_lib.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_interface_lib.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_data_stream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_services.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_services.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xilcomms_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xilcomms_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "rtiostream_utils.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils/rtiostream_utils.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "target_io.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/target_io.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_app.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_app.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_data_stream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_instrumentation.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/xil_instrumentation.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "codeinstr_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/codeinstr_data_stream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "codeinstr_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/codeinstr_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=0 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=1 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "host_timer_x86.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src/host_timer_x86.c"
Creating standalone executable ./ifir_example ...
g++ -o ./ifir_example xil_interface.o sil_main.o rtiostream_tcpip.o xil_interface_lib.o xil_data_stream.o xil_services.o xilcomms_rtiostream.o xil_rtiostream.o rtiostream_utils.o target_io.o coder_assumptions_app.o coder_assumptions_data_stream.o coder_assumptions_rtiostream.o xil_instrumentation.o codeinstr_data_stream.o codeinstr_rtiostream.o host_timer_x86.o -Wl,--start-group ../instrumented/Interpolated_FIR.o ../instrumented/ifir_example.o ../instrumented/ifir_example_data.o /tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/lib/ifir_example_ca.a -Wl,--end-group
Created: ./ifir_example
Successfully generated all binary outputs.
gmake: Nothing to be done for `all'.
Updating code generation report with SIL files ...
Starting SIL simulation for component: ifir_example
Application stopped
Stopping SIL simulation for component: ifir_example
You can view the code execution metrics by clicking either Code Profile Analyzer or Code execution profiling report. The ifir_example_step1 in the report corresponds to the IFIR subsystem. To compare the performance of the generated code, use the value in Average Execution Time in ns column corresponding to ifir_example_step1.
Generate Code and Compare Performance
Use this interactive section to compare the performance of the generated code with the plain C code. Select the Instruction Set Extension or Intel AVX2 Code Replacement Library option to optimize the generated code from the drop-down list.
Note: Ensure that your processor supports the instruction set extension to avoid build errors.
compare ="AVX2";comparewith="None";
To get a better average, set the sample time of the Gaussian noise to 1 and stop time to 10000 so that the function is called 10001 times.
set_param([mdl,'/Gaussian Noise'],'SampTime','1'); set_param(mdl,'StopTime','10000'); set_param(mdl,'FixedStep','1');
if compare == "CRL" set_param(mdl,'InstructionSetExtensions','None'); if strcmp(computer('arch'),'win64') set_param(mdl,'CodeReplacementLibrary','DSP Intel AVX2-FMA (Windows)'); elseif strcmp(computer('arch'),'glnxa64') set_param(mdl,'CodeReplacementLibrary','DSP Intel AVX2-FMA (Linux)'); end else set_param(mdl,'InstructionSetExtensions',compare); set_param(mdl,'OptimizeReductions','On'); end
out = sim(mdl);
Skipped unpacking from Simulink cache file "ifir_example.slxc" because the relevant build artifacts on disk are up to date.
Searching for referenced models in model 'ifir_example'.
Total of 1 models to build.
Starting build procedure for: ifir_example
Generating code and artifacts to 'Model specific' folder structure
Generating code into build folder: /tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw
Invoking Target Language Compiler on ifir_example.rtw
Using System Target File: /mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert/ert.tlc
Loading TLC function libraries
........
Generating TLC interface API for custom data
.
Initial pass through model to cache user defined code
.
Caching model source code
.................................................................
Writing header file ifir_example_types.h
Writing header file ifir_example.h
Writing source file ifir_example.c
Writing header file rtwtypes.h
Writing header file Interpolated_FIR.h
.
Writing source file Interpolated_FIR.c
Writing source file rtmodel.c
Writing header file ifir_example_private.h
Writing header file rtmodel.h
Writing source file ifir_example_data.c
.
TLC code generation complete (took 1.856s).
Creating HTML report file index.html
Saving binary information cache.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example.mk' ...
Building 'ifir_example': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example.mk buildobj
gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "Interpolated_FIR.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/Interpolated_FIR.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example_data.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example_data.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "rtmodel.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/rtmodel.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_profile_timer.o" "coder_profile_timer.c"
Successfully generated all binary outputs.
gmake: Nothing to be done for `buildobj'.
Successful completion of build procedure for: ifir_example
Simulink cache artifacts for 'ifir_example' were created in '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example.slxc'.
Build Summary
Top model targets:
Model Build Reason Status Build Duration
ifir_example Generated code was out of date. Code generated and compiled. 0h 0m 15.349s
1 of 1 models built (0 models already up to date) Build duration: 0h 0m 15.956s
Preparing to start SIL simulation ...
Building with 'gcc'. MEX completed successfully.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
'/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/lib/ifir_example_ca.mk' is up to date.
Building 'ifir_example_ca': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example_ca.mk all
gcc -c -fwrapv -fPIC -O3 -mavx2 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example_ca.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/ifir_example_ca.c"
Creating static library ./ifir_example_ca.a ...
ar ruvs ./ifir_example_ca.a coder_assumptions_hwimpl.o coder_assumptions_flt.o ifir_example_ca.o
ar: u' modifier ignored since
D' is the default (see `U')
ar: creating ./ifir_example_ca.a
a - coder_assumptions_hwimpl.o
a - coder_assumptions_flt.o
a - ifir_example_ca.o
Created: ./ifir_example_ca.a
Successfully generated all binary outputs.
gmake: Nothing to be done for `all'.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/ifir_example.mk' ...
Building 'ifir_example': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example.mk all
gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_interface.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/xil_interface.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "sil_main.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/sil_main.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "rtiostream_tcpip.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/rtiostreamtcpip/rtiostream_tcpip.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_interface_lib.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_interface_lib.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_data_stream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_services.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_services.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xilcomms_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xilcomms_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "rtiostream_utils.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils/rtiostream_utils.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "target_io.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/target_io.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_app.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_app.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_data_stream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_instrumentation.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/xil_instrumentation.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "codeinstr_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/codeinstr_data_stream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "codeinstr_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/codeinstr_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -mavx2 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "host_timer_x86.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src/host_timer_x86.c"
Creating standalone executable ./ifir_example ...
g++ -o ./ifir_example xil_interface.o sil_main.o rtiostream_tcpip.o xil_interface_lib.o xil_data_stream.o xil_services.o xilcomms_rtiostream.o xil_rtiostream.o rtiostream_utils.o target_io.o coder_assumptions_app.o coder_assumptions_data_stream.o coder_assumptions_rtiostream.o xil_instrumentation.o codeinstr_data_stream.o codeinstr_rtiostream.o host_timer_x86.o -Wl,--start-group ../instrumented/Interpolated_FIR.o ../instrumented/ifir_example.o ../instrumented/ifir_example_data.o ../instrumented/rtmodel.o /tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/lib/ifir_example_ca.a -Wl,--end-group
Created: ./ifir_example
Successfully generated all binary outputs.
gmake: Nothing to be done for `all'.
Updating code generation report with SIL files ...
Starting SIL simulation for component: ifir_example
Application stopped
Stopping SIL simulation for component: ifir_example
Get the total execution time of the generated SIMD code for comparison.
profileSectionIndex = 4; tcompare = out.get('executionProfile').Sections(profileSectionIndex).TotalExecutionTimeInTicks;
Set the instruction set to none
to generate code without SIMD instruction set extensions (plain C code).
if comparewith ~= "None" set_param(mdl,'InstructionSetExtensions',comparewith); set_param(mdl,'OptimizeReductions','On'); set_param(mdl,'CodeReplacementLibrary','None'); else set_param(mdl,'InstructionSetExtensions',comparewith); set_param(mdl,'CodeReplacementLibrary','None'); end
out = sim(mdl);
Skipped unpacking from Simulink cache file "ifir_example.slxc" because the relevant build artifacts on disk are up to date.
Searching for referenced models in model 'ifir_example'.
Total of 1 models to build.
Starting build procedure for: ifir_example
Generating code and artifacts to 'Model specific' folder structure
Generating code into build folder: /tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw
Invoking Target Language Compiler on ifir_example.rtw
Using System Target File: /mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert/ert.tlc
Loading TLC function libraries
........
Generating TLC interface API for custom data
.
Initial pass through model to cache user defined code
.
Caching model source code
..............................................................
Writing header file ifir_example_types.h
Writing header file ifir_example.h
Writing source file ifir_example.c
Writing header file rtwtypes.h
Writing header file Interpolated_FIR.h
.
Writing source file Interpolated_FIR.c
Writing source file rtmodel.c
Writing header file ifir_example_private.h
Writing header file rtmodel.h
.
Writing source file ifir_example_data.c
TLC code generation complete (took 2.009s).
Creating HTML report file index.html
Saving binary information cache.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example.mk' ...
Building 'ifir_example': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example.mk buildobj
gcc -c -fwrapv -fPIC -O3 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "Interpolated_FIR.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/Interpolated_FIR.c" gcc -c -fwrapv -fPIC -O3 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example.c" gcc -c -fwrapv -fPIC -O3 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example_data.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/ifir_example_data.c" gcc -c -fwrapv -fPIC -O3 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "rtmodel.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented/rtmodel.c" gcc -c -fwrapv -fPIC -O3 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_profile_timer.o" "coder_profile_timer.c"
Successfully generated all binary outputs.
gmake: Nothing to be done for `buildobj'.
Successful completion of build procedure for: ifir_example
Simulink cache artifacts for 'ifir_example' were created in '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example.slxc'.
Build Summary
Top model targets:
Model Build Reason Status Build Duration
ifir_example Generated code was out of date. Code generated and compiled. 0h 0m 14.989s
1 of 1 models built (0 models already up to date) Build duration: 0h 0m 15.62s
Preparing to start SIL simulation ...
Building with 'gcc'. MEX completed successfully.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/lib/ifir_example_ca.mk' ...
Building 'ifir_example_ca': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example_ca.mk all
gcc -c -fwrapv -fPIC -O3 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_assumptions_hwimpl.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_hwimpl.c" gcc -c -fwrapv -fPIC -O3 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "coder_assumptions_flt.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_flt.c" gcc -c -fwrapv -fPIC -O3 -DINTEGER_CODE=0 -DCA_CHECK_FLOATING_POINT_ENABLED=1 -DCA_CHECK_LONG_LONG_ENABLED=0 -DCA_CHECK_DYNAMIC_MEMORY=0 -DCA_MODEL_SPECIFIC_CHECKS_ENABLED=0 -DCA_CHECK_DAZ_ENABLED=1 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -o "ifir_example_ca.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/ifir_example_ca.c"
Creating static library ./ifir_example_ca.a ...
ar ruvs ./ifir_example_ca.a coder_assumptions_hwimpl.o coder_assumptions_flt.o ifir_example_ca.o
ar: u' modifier ignored since
D' is the default (see `U')
ar: creating ./ifir_example_ca.a
a - coder_assumptions_hwimpl.o
a - coder_assumptions_flt.o
a - ifir_example_ca.o
Created: ./ifir_example_ca.a
Successfully generated all binary outputs.
gmake: Nothing to be done for `all'.
Using toolchain: GNU gcc/g++ | gmake (64-bit Linux)
Creating '/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/ifir_example.mk' ...
Building 'ifir_example': "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/bin/glnxa64/gmake" -j 4 -l 4 -f ifir_example.mk all
gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_interface.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/xil_interface.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "sil_main.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/sil_main.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "rtiostream_tcpip.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/rtiostreamtcpip/rtiostream_tcpip.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_interface_lib.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_interface_lib.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_data_stream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_services.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_services.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xilcomms_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xilcomms_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/xil_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "rtiostream_utils.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils/rtiostream_utils.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "target_io.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/target_io.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_app.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_app.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_data_stream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "coder_assumptions_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/coder_assumptions_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "xil_instrumentation.o" "/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil/xil_instrumentation.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "codeinstr_data_stream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/codeinstr_data_stream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "codeinstr_rtiostream.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c/codeinstr_rtiostream.c" gcc -c -fwrapv -fPIC -O3 -DCODER_ASSUMPTIONS_ENABLED=1 -DXIL_SIGNAL_HANDLER=1 -DSIL_DISABLE_SUBNORMAL_SUPPORT=0 -DCLASSIC_INTERFACE=0 -DALLOCATIONFCN=0 -DTERMFCN=1 -DONESTEPFCN=1 -DMAT_FILE=0 -DMULTI_INSTANCE_CODE=0 -DINTEGER_CODE=0 -DMT=1 -DTID01EQ=0 -DRTIOSTREAM_RX_BUFFER_BYTE_SIZE=50000 -DRTIOSTREAM_TX_BUFFER_BYTE_SIZE=50000 -DCODE_INSTRUMENTATION_ENABLED=1 -DMEM_UNIT_BYTES=1 -DMemUnit_T=uint8_T -DMODEL=ifir_example -DNUMST=2 -DNCSTATES=0 -DHAVESTDIO -DMODEL_HAS_DYNAMICALLY_LOADED_SFCNS=0 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470 -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/instrumented -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/simulink/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/src/ext_mode/common -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/rtw/c/ert -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/dsp/dsp/extern/src/export/include -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/shared/dsp/vision/matlab/include -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/sil -I/tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/rtw/targets/pil/c -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/XILTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src/utils -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/rtiostream/src -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CoderAssumpTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/extern/include/coder/connectivity/CodeInstrTgtAppSvc -I/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src -o "host_timer_x86.o" "/mathworks/devel/bat/filer/batfs2566-0/Bdoc25a.2864802/build/runnable/matlab/toolbox/coder/profile/src/host_timer_x86.c"
Creating standalone executable ./ifir_example ...
g++ -o ./ifir_example xil_interface.o sil_main.o rtiostream_tcpip.o xil_interface_lib.o xil_data_stream.o xil_services.o xilcomms_rtiostream.o xil_rtiostream.o rtiostream_utils.o target_io.o coder_assumptions_app.o coder_assumptions_data_stream.o coder_assumptions_rtiostream.o xil_instrumentation.o codeinstr_data_stream.o codeinstr_rtiostream.o host_timer_x86.o -Wl,--start-group ../instrumented/Interpolated_FIR.o ../instrumented/ifir_example.o ../instrumented/ifir_example_data.o ../instrumented/rtmodel.o /tmp/Bdoc25a_2864802_42070/tp98632045/dsp-ex74868470/ifir_example_ert_rtw/coderassumptions/lib/ifir_example_ca.a -Wl,--end-group
Created: ./ifir_example
Successfully generated all binary outputs.
gmake: Nothing to be done for `all'.
Updating code generation report with SIL files ...
Starting SIL simulation for component: ifir_example
Application stopped
Stopping SIL simulation for component: ifir_example
Get the execution time of the generated plain C code for comparison.
tcomparewith = out.get('executionProfile').Sections(profileSectionIndex).TotalExecutionTimeInTicks; close_system(mdl,0);
Compare the performance
performacegain = single(tcomparewith) ./ single(tcompare)
performacegain = single
2.8147
The AVX2 intrinsics achieve a performance gain of about 3.6x compared to plain C code. Note that all SIMD instruction set extensions show a performance gain of more than 3.2x and the Intel AVX2 Code Replacement Library shows a performance gain of 5.2x compared to plain C code.
Note: To compare the performance, this example uses a Windows machine using an Intel Xeon(R) W-2133 CPU running at 3.60 GHz. These performance numbers might vary in your desktop environment.
See Also
FIR Decimation | FIR Interpolation | Discrete FIR Filter (Simulink)