This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA2: AdaBoost Training with CaltechUsa

Part Number: TDA2

Hi,

I am a beginner and I just started to work on TDA2EVM and Adaboost for OD application. I want to train the Adaboost classifier for Pedestrian detection which should execute on TDA2. 

From the previous discussions about AdaBoost training on this forum, I got to know that we can use Adaboost object detection training tool (Matlab based github.com/.../acf-jacinto ) to generate .descriptor. 
I read the info in the Readme file

## Usage

* Open Matlab and navigate to detector folder.
* Open acfJacintoExample.m in editor
* Make changes for your dataset path, list of videos and annotations files, object type to be trained etc.
* Run the file to do train and test.

I want to do the Adaboost training with  Caltech dataset for pedestrian detection---- > http://www.vision.caltech.edu/Image_Datasets/CaltechPedestrians/ 

Has anyone tried training and testing the Adaboost classifier with Caltech dataset?
So In acfJacintoExample.m I should just give the respective paths to .seq and respective annotations .vbb file  and then execute the .m?

elseif strcmp(dataName, 'CaltechUsa')
%error('Define the dataset paths here');
exptName='AcfJacintoClatechUsa';
extractType='all';
extractFormat='';
dataDir='E:\HOG_SVM\Training_datasets_SVM\Calltech_for_Adaboost';
vidList={ ...
{'videos/set00/V000.seq', 'videos/set00/V001.seq','videos/set00/V002.seq', 'videos/set00/V003.seq','videos/set00/V004.seq', 'videos/set00/V005.seq'}, ...
{'videos/set01/V000.seq', 'videos/set01/V001.seq','videos/set01/V002.seq', 'videos/set01/V003.seq','videos/set01/V004.seq', 'videos/set01/V005.seq'} ...
};
vbbList={ ...
{'annotations/set00/V000.vbb', 'annotations/set00/V001.vbb', 'annotations/set00/V002.vbb', 'annotations/set00/V003.vbb', 'annotations/set00/V004.vbb', 'annotations/set00/V005.vbb'}, ...
{'annotations/set01/V000.vbb', 'annotations/set01/V001.vbb', 'annotations/set01/V002.vbb', 'annotations/set01/V003.vbb', 'annotations/set01/V004.vbb', 'annotations/set01/V005.vbb'} ...
};
config = []; 

-------------------------------------------------------------------------------------------------------------------------------------------------

Do I need to do anything else like setting up any parameters before training and executing acfJacintoExample.m ?? 

-------------------------------------------------------------------------------------------------------------------------------------------------
I got to know that after execution know that a .descriptor file will be generated which we need to convert into binary format which is TDA OD application compatiable weight file by using  AdaboostTableGen.exe. Anything else I should know more like type conversions of some variables or so? 

  • Did you try the changes that you mentioned? What was the outcome? Did you face any issue?

    I suggest not to try a large dataset initially. Please try the example that is already given. Or try training with a part of the large dataset to get an initial understanding of the training and usage of the descriptor file. 

    Once you are sure that everything works, you will be more confident to try a large dataset training.

    If you face any specific issue, let us know.

  • Hi Manu,

    I gave the respective path to the Caltech dataset and there were 2 .descriptor files generated in C:\ti\Adaboost_Training_Tool_acf-jacinto-master\detector\models folder namely 'AcfJacintoClatechUsaDetectorCascade.descriptor' size of which is 883 KB and another one 'AcfJacintoClatechUsaDetectorCompact.descriptor' size of which is 181 KB.
    Which one of these should I use further?

    For now I used 'AcfJacintoClatechUsaDetectorCascade.descriptor' to generate .bin file using AdaboostTableGen.exe
    I will soon test the TI OD code by configuring the object_detection.cfg to read the weight .bin file and update you.

    How do I use this .bin in Vision SDK?

    Thanks and Regards,
    Ganesh
  • Have you tried the example that is provided in VisionSDK? Please try it and let us know if you face any specific issue. I have looped in the expert.
  • Hi Manu,

    I used ‘AcfJacintoClatechUsaDetectorCascade.descriptor’ along with AdaboostTableGen.exe provided in ‘C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\200.V.OD.C66XSRC.00.06\modules\ti_object_detection\utils’ to generate a ‘pd_adaboost_weight_Caltech.bin’ weights file which can be used in OD test application. I ran the test application with the TI provided ‘VIRB0008_0r_4p_PedSegments_1280x720_nv12_10fr.bin’ as input and configured the ‘object_detection.cfg’ to use external weights from ‘pd_adaboost_weight_Caltech.bin’ but there were no pedestrians detected. It seems that the ‘VIRB0008_0r_4p_PedSegments_1280x720_nv12_10fr.bin’  does not have any pedestrians.

    1. Could you please provide us similar input file containing pedestrians ?

    2. Also how can we generate the file, ‘adaboost_const_pd.c’  provided in ‘C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\200.V.OD.C66XSRC.00.06\modules\ti_object_detection\algo\src’which contains AdaBoost classifier weights? The comments in this file say that it is autogenerated.

    I would like to use the trained weights from ‘pd_adaboost_weight_Caltech.bin’ in VisionSDK OD usecase.

    How are the values from above descriptor files mapped into the ‘pd_adaBoost_Table’ and  'pd_adaBoost_IndexTable' in adaboost_const_pd.c ? Is there some application provided by TI to do that?

    Thanks and Regards,
    Ganesh

  • Hi the ti_object_detection library which runs on C66x DSP only does the ADABOOST part on a multi-scale HOG feature pyramid. This Multi-scale feature pyramid is generated by "ti_pd_feature_plane_computation" which is available part of EVE library. So you can take any image with pedestrians, vehicles or traffic signs and first run the "ti_pd_feature_plane_computation" to get the multi-scale HOG feature pyramid and then run the "ti_object_detection" library to detect pedestrians, vehicles and traffic signs.

    2. The file "adaboost_const_pd.c" is a set of default weights for detecting pedestrians. You can train on a different dataset using ACF Jacinto, convert the .descriptor filed to.bin file and supply the new weights externally by using the "useExtWeightsPD" flag and provide path in "pdWeightsFileName". Please refer to "object_detection.cfg" for usage. This external weights is provided using an additional buffer in the "inBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]". Please refer to object_detection_tb.c for usage.

    Regards,
    Shyam
  • Hi Shyam,

    Thanks for your answer.
    I already used the external weights .bin file in the tb as mentioned by you. The test bench is executing ok but it seems there are no pedestrians in 'VIRB0008_0r_4p_PedSegments_1280x720_nv12_10fr.bin' provided by TI as an test input and only TSR are being detected. Can you provide an input .bin with pedestrians?

    I would like to use the same weights in the OD usecase scenario. How can I do that?
    Is there some mapping between 'adaboost_const_pd.c' and the .descriptor file, so that I could copy the values from .descriptor file into adaboost_const_pd.c ---> ‘pd_adaBoost_Table’ and 'pd_adaBoost_IndexTable'?

    Regards,
    Ganesh
  • Hi Shyam,

    Thanks for your answer.
    I already used the external weights .bin file in the tb as mentioned by you. The test bench is executing ok but it seems there are no pedestrians in 'VIRB0008_0r_4p_PedSegments_1280x720_nv12_10fr.bin' provided by TI as an test input and only TSR are being detected. Can you provide an input .bin with pedestrians?

    I would like to use the same weights in the OD usecase scenario. How can I do that?
    Is there some mapping between 'adaboost_const_pd.c' and the .descriptor file, so that I could copy the values from .descriptor file into adaboost_const_pd.c ---> ‘pd_adaBoost_Table’ and 'pd_adaBoost_IndexTable'?

    Regards,
    Ganesh
  • Hi Ganesh,

    As mentioned earlier, you will have to use "ti_pd_feature_plane_computation" library to create an input to "ti_object_detection" library. Please take any image with pedestrian and run the "ti_pd_feature_plane_computation" application first. Provide the output of this application to the ti_object_detection application.

    The pd_adaboost_weights.bin file is simply the binary version of the adaboost_const_pd.c file. You dont have to modify the adaboost_const_pd.c file. You can generate a new pd_adaboost_weights.bin file by running the "ti_object_detection\utils\AdaboostTableGen.exe". You can then supply this .bin file externally to detect pedestrians.

    Hope this helps.

    Regards,
    Shyam
  • Hi Shyam,

    ---->As mentioned earlier, you will have to use "ti_pd_feature_plane_computation" library to create an input to "ti_object_detection" library. Please take any image with pedestrian and run the "ti_pd_feature_plane_computation" application first. Provide the output of this application to the ti_object_detection application.

    I will try doing this to generate an input file to test the OD code with external weights.

    -----> The pd_adaboost_weights.bin file is simply the binary version of the adaboost_const_pd.c file. You dont have to modify the adaboost_const_pd.c file. You can generate a new pd_adaboost_weights.bin file by running the "ti_object_detection\utils\AdaboostTableGen.exe". You can then supply this .bin file externally to detect pedestrians. 

    I think there is some misunderstanding. I know how to generate new pd_adaboost_weights  based on the .descriptor file, which I got after training AdaBoost classifier with the Caltech dataset. I also know how to use the external weights .bin file for testing the OD code. 

    My question is : how can I use this external weights to run the Use case for OD in real-time application instead of the values in the file 'adaboost_const_pd.c'?

    regards,

    Ganesh

  • Hi Ganesh,

    Just as how its done in object_detection_tb.c, you will have to allocate a buffer and supply as part of "inBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]". So you will have to modify Vision SDK application to allocate a buffer in the ARM side, copy the external weights and share it with DSP. The weights in "adaboost_const_pd.c" will be used only if "useExtWeightsPD = 0", when "useExtWeightsPD = 1" the ti_object_detection libraray expects the host to allocate and share the buffer with new weights.

    Regards,
    Shyam
  • Hi Shyam,

    Again thanks for your reply!
    I will try doing that and update you.

    regards,
    Ganesh
  • Hi Shyam,

    I tried the following option that you mentioned previously,

    ---->As mentioned earlier, you will have to use "ti_pd_feature_plane_computation" library to create an input to "ti_object_detection" library. Please take any image with pedestrian and run the "ti_pd_feature_plane_computation" application first. Provide the output of this application to the ti_object_detection application.

    I tried to compile the code for TARGET_PLATFORM=PC, and I am facing some compilation error. 
    I have followed instrustions mentioned in 'eve_sw_getting_started.pdf'

    I successfully compiled the target code by doing just 'gmake' as mentioned in above image. Then I run vcvarshall.bat and again 'gmake TARGET_PLATFORM=PC' 


    But getting the following error!

      

    Can you please help me solve it?

     

    Thanks and regards,

    Ganesh

  • Hi Shyam,

    It would be very nice if could give some pointers of how I can proceed with this.

    I am new to vision sdk.

    Thanks and Regards,
    Ganesh

  • Hi Shyam,

    You had suggested me the following thing to use the external weights .bin file in Vision SDK. I have some doubts regarding the same.

    Just as how its done in object_detection_tb.c, you will have to allocate a buffer and supply as part of "inBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]". So you will have to modify Vision SDK application to allocate a buffer in the ARM side, copy the external weights and share it with DSP. The weights in "adaboost_const_pd.c" will be used only if "useExtWeightsPD = 0", when "useExtWeightsPD = 1" the ti_object_detection libraray expects the host to allocate and share the buffer with new weights.

    -> Which file or files do I need to modify in VisionSDK and how exactly?  Is it objectDetectionLink_algPlugin.c? 

    -> How do I read a .bin file and store in the buffer which I will declare for the binary weights? can I used the usual fopen() and fread() commands to do this? 

    Looking forward to your reply.

    Thanks and Regards,

    Ganesh

  • Hi Ganesh,

    Sorry for late reply. I've forwarded your EVE build query to another expert, he will be helping you on that issue.

    As for implementing the additional buffer in VisionSDK, you will have to allocate a buffer from ARM and supply to C66x DSP. 

    In the objectDetectionLink_algPlugin file, you will have to assign the inBufs pointers just like how its done in object_detection_tb.c but memory allocation cannot happen there. This is because ARM should allocate a buffer, read a .bin file and pass the buffer to DSP after doing a cache write-back. This needs to happen only once per run. 

    For reading the .bin file you can use regular fread() open the file in "rb" mode.

    I will also check with VisionSDK expert if he can provide some pointers on the specifics.

    Regards,
    Shyam

  • Hi Shyam,

    Thanks for your answer.
    Looking forward to your reply.

    regards,
    Ganesh
  • Hi Ganesh,

        Can you try building the full EVE SW code in host emulation mode before building the ti_pd_feature_plane_computation. For this you need to go to the top most directory of EVE SW and run the following command :

    <EVESW ROOT>gmake TARGET_PLATFORM=PC

    Regards,

    Anshu

  • Hi Anshu,

    Tried doing that, getting the same error as mentioned before! Just for your info, we have the source code version: eve_sw_src_01_18_00_00. 

    Thanks and Regards,

    Ganesh

  • Ganesh,
    Can you confirm whether you have made any modifications to the makefile or applet files? It looks like vcop.h file is not added. Can you include cop.h file in feature_plane_comp_alg.c and see if that fixes the issue.

    Regards,
    Anshu
  • Hi Anshu,

    When I do >> gmake .... the eve code is compiling without any problem but when I do >> gmake TARGET_PLATFORM=PC  ....then I am getting errors one of them is the following .

    Yes I did modify some paths. Following is my make file

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    #******************************************************************************
    #* Copyright (C) 2009-2013 Texas Instruments Incorporated. *
    #* All Rights Reserved *
    #******************************************************************************
    #
    # This makefile expects the following environment variables from the user:
    # ARP32_TOOLS : Directory pointing to ARP32 compiler
    # DSP_TOOLS : Directory pointing to DSP compiler
    # xdais_PATH : Directory pointing to root of XDAIS installation.
    # EVE_SW_ROOT : Directory pointing to the root of the EVE SW installation.
    # This is optional and is current directory by default.
    # UTILS_PATH : Directory pointing to util commands mkdir and rm
    # (CCS users can find them at ccsv5/utils/cygwin)
    #
    # Please note that the path names should use forward slash (/) and should
    # not contain quotes and spaces. As an example, if we want to set ARP32 compiler
    # path as C:/Program Files/Texas Instruments/ARP32_tools, use
    # set ARP32_TOOLS=C:/PROGRA~1/TEXASI~1/ARP32_tools
    #
    #******************************************************************************

    ifdef SystemRoot
    START_TIME := $(shell echo . |time|findstr [0-9])
    START_TIME := $(lastword $(START_TIME))
    else
    START_TIME = $(shell date +%H:%M:%S)
    endif
    $(info START_TIME $(START_TIME))
    ##############################################################
    #optional : only for: gmake format
    FORMATTER = "C:/Tools/AStyle/bin/AStyle.exe"
    FORMATOPT = --recursive --suffix=none --style=allman --convert-tabs --min-conditional-indent=1 --indent-col1-comments --align-pointer=name
    ##############################################################
    TI_SW_ROOT := $(abspath ../../)
    UTILS_PATH ?=$(TI_SW_ROOT)\os_tools\windows\xdctools_3_32_00_06_core\bin
    EVE_SW_ROOT ?=$(TI_SW_ROOT)\algorithms_codecs\eve_sw_src_01_18_00_00
    DSP_TOOLS ?=$(TI_SW_ROOT)\cg_tools\windows\C6000_7.4.2
    ARP32_TOOLS ?=$(TI_SW_ROOT)\cg_tools\windows\arp32_1.0.7
    xdais_PATH ?= $(TI_SW_ROOT)\algorithms_codecs\xdais_7_24_00_04
    ALGFRAMEWORK_PATH ?= $(TI_SW_ROOT)\algorithms_codecs\REL.ALGFRAMEWORK.02.08.00.00\algframework
    DMAUTILS_PATH ?= $(TI_SW_ROOT)\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils

    export EVE_SW_ROOT ?= $(CURDIR)
    export ARP32_TOOLS
    export DSP_TOOLS
    export xdais_PATH
    export UTILS_PATH
    export ALGFRAMEWORK_PATH
    export DMAUTILS_PATH

    all:
    @echo ======== STARTERWARE =================
    gmake -C ./starterware -f Makefile TARGET_SOC=vayu CORE=eve
    gmake -C ./starterware -f Makefile TARGET_SOC=vayu CORE=dsp
    gmake -C ./starterware -f Makefile TARGET_SOC=vme CORE=eve
    gmake -C ./starterware -f Makefile TARGET_SOC=vme CORE=dsp
    @echo .
    @echo ======== KERNELS =================
    gmake -C ./kernels -f makefile
    @echo ======== APPS =================
    gmake -C ./apps -f makefile
    @echo ======== ALGORITHMS =================
    gmake -C ./algorithms -f makefile
    @echo The start time is: $(START_TIME)
    ifdef SystemRoot
    @echo . |time|findstr [0-9]
    else
    @echo The end time is: `date +%H:%M:%S`
    endif

    .IGNORE: clean
    clean:
    @echo ======== STARTERWARE =================
    gmake -C ./starterware -f Makefile clean TARGET_SOC=vayu CORE=eve
    gmake -C ./starterware -f Makefile clean TARGET_SOC=vayu CORE=dsp
    gmake -C ./starterware -f Makefile clean TARGET_SOC=vme CORE=eve
    gmake -C ./starterware -f Makefile clean TARGET_SOC=vme CORE=dsp
    rmdir /S /Q ./starterware/libs
    @echo ======== KERNELS =================
    gmake -C ./kernels -f makefile clean
    @echo ======== APPS =================
    gmake -C ./apps -f makefile clean
    @echo ======== ALGORITHMS =================
    gmake -C ./algorithms -f makefile clean
    @echo The start time is: $(START_TIME)
    ifdef SystemRoot
    @echo . |time|findstr [0-9]
    else
    @echo The end time is: `date +%H:%M:%S`
    endif

    scrub: clean
    ifdef SystemRoot
    attrib +r +s ./kernels/inc/evekernels_include.h
    $(UTILS_PATH)/rm -rf ./kernels/inc/*
    attrib -r -s ./kernels/inc/evekernels_include.h
    $(UTILS_PATH)/rm -rf ./out
    else
    mv ./kernels/inc/evekernels_include.h ./out
    rm -rf ./kernels/inc/*
    mv ./out/evekernels_include.h ./kernels/inc
    rm -rf ./out
    endif

    format:
    $(FORMATTER) $(FORMATOPT) "./coresw/*.c" "./coresw/*.h"
    $(FORMATTER) $(FORMATOPT) "./algorithms/*.h" "./algorithms/*.c"

    ----------------------------------------------------------------------------------------------------------------------------------------------------

    As seen in the previous error log, I get error in vlib\vcop_harrisScore_7x7\scr_kernelC\xgrad.c

    I tried to skip the compilation of this file by removing its name from C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\kernels\kernel_priv_list.txt , but then I get some other errors.

    and vcop.h is also there in vcop_harrisSScore_7x7/src_kernelC as shown in the image below:

    Could you please let me know how to proceed?

    Thanks and Regards,

    Ganesh

  • Hi Anshu,

    Any updates ??

    Regards,
    Ganesh
  • Ganesh,

       Can  you do the build with following command and share the logs :

    gmake TARGET_PLATFORM=PC SHOW_COMMANDS=1

    Regards,

    Anshu

  • Hi Anshu,

    I executed >> gmake TARGET_PLATFORM=PC SHOW_COMMANDS=1 

    Following is the log for the same.

    Microsoft Windows [Version 10.0.17134.471]
    (c) 2018 Microsoft Corporation. Alle Rechte vorbehalten.
    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00>gmake TARGET_PLATFORM=PC SHOW_COMMANDS=1
    START_TIME 11:07:45,29
    ======== STARTERWARE =================
    gmake -C ./starterware -f Makefile TARGET_SOC=vayu CORE=eve
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\mkdir -p  ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo rs ./libs/PC/debug/libevestarterware_eve.lib > ar_cmd.txt
    FOR %%i IN (C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/INTH.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mbox.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mmu.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/pcache.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/sctm.obj  ) DO echo %%i >> ar_cmd.txt
    C:/MinGW/bin/ar @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    gmake -C ./starterware -f Makefile TARGET_SOC=vayu CORE=dsp
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\mkdir -p  ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo rs ./libs/PC/debug/libevestarterware_eve.lib > ar_cmd.txt
    FOR %%i IN (C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/INTH.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mbox.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mmu.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/pcache.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/sctm.obj  ) DO echo %%i >> ar_cmd.txt
    C:/MinGW/bin/ar @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    gmake -C ./starterware -f Makefile TARGET_SOC=vme CORE=eve
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\mkdir -p  ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo rs ./libs/PC/debug/libevestarterware_eve.lib > ar_cmd.txt
    FOR %%i IN (C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/INTH.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mbox.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mmu.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/pcache.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/sctm.obj  ) DO echo %%i >> ar_cmd.txt
    C:/MinGW/bin/ar @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    gmake -C ./starterware -f Makefile TARGET_SOC=vme CORE=dsp
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\mkdir -p  ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo rs ./libs/PC/debug/libevestarterware_eve.lib > ar_cmd.txt
    FOR %%i IN (C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/INTH.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mbox.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/mmu.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/pcache.obj C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/out/PC/debug/starterware/drivers/src/host_pc/sctm.obj  ) DO echo %%i >> ar_cmd.txt
    C:/MinGW/bin/ar @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    .
    ======== KERNELS =================
    gmake -C ./kernels -f makefile
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    .
    ======== IP KERNELS KERNELC =================
    gmake -f makefile_generatelib KERNEL_MODE=KERNELC FILE_LIST=kernel_priv_list.txt LIB_NAME=libeveprivkernels.eve.lib
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    echo compiling .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c
    compiling .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c
    C:\MinGW\bin\g++ -c -O3 -DVCOP_HOST_EMULATION -DHOST_EMULATION -fpermissive -m32 -I ..\kernels\common -I C:\VISION_SDK_02_12_00_00\ti_components\cg_tools\windows\arp32_1.0.7\include\vcop -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\starterware\inc\baseaddress\vayu\eve -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils\inc -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils\inc\edma_csl -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils\inc\edma_utils -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\starterware\inc -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.ALGFRAMEWORK.02.08.00.00\algframework\inc -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\kernels\inc -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\kernels -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\common -I C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\xdais_7_24_00_04\packages -I C:\VISION_SDK_02_12_00_00\ti_components\cg_tools\windows\arp32_1.0.7\include\vcop -I ../starterware/inc -I ../starterware/inc/edma_utils -I ../starterware/inc/edma_csl -I ../algframework/inc -I vlib/blockSortU32/inc/ -I vlib/vcop_bhattacharyaDistance/inc/ -I vlib/vcop_block_statistics/inc/ -I vlib/vcop_calc_determinant_tensor_matrix/inc/ -I vlib/vcop_calc_inverse_structure_tensor_2x2/inc/ -I vlib/vcop_calc_new_lk_xy/inc/ -I vlib/vcop_canny_non_maximum_suppression/inc/ -I vlib/vcop_census_16bits/inc/ -I vlib/vcop_census_8bits/inc/ -I vlib/vcop_compute_rBrief/inc/ -I vlib/vcop_copy_new_lk_xy/inc/ -I vlib/vcop_disparity_hammingDistance_row/inc/ -I vlib/vcop_disparity_sad16_row/inc/ -I vlib/vcop_disparity_sad8_row/inc/ -I vlib/vcop_extract_bit_field_u32/inc/ -I vlib/vcop_fast9/inc/ -I vlib/vcop_fast9_score/inc/ -I vlib/vcop_foreach_multiblock_bilinear_interp_7x7_u8/inc/ -I vlib/vcop_generateList/inc/ -I vlib/vcop_glcm/inc/ -I vlib/vcop_gradient5x5PyramidKernel_8/inc/ -I vlib/vcop_grayscale_morphology_flat/inc/ -I vlib/vcop_hammingDistance/inc/ -I vlib/vcop_harrisScore_32_7x7/inc/ -I vlib/vcop_harrisScore_7x7/inc/ -I vlib/vcop_horizontal_non_max_suppression/inc/ -I vlib/vcop_hough_for_circles/inc/ -I vlib/vcop_hough_for_lines/inc/ -I vlib/vcop_location_matrix/inc/ -I vlib/vcop_median_filter_mxn_u8/inc/ -I vlib/vcop_multiblock_bilinear_interp_7x7_u8/inc/ -I vlib/vcop_multiblock_bilinear_interp_intlv_7x7_s16/inc/ -I vlib/vcop_multiblock_gradient_xy/inc/ -I vlib/vcop_multipoint_harrisScore_u16/inc/ -I vlib/vcop_ncc/inc/ -I vlib/vcop_nonMaxSuppress_mxn_S16/inc/ -I vlib/vcop_nonMaxSuppress_mxn_S32/inc/ -I vlib/vcop_normalFlow/inc/ -I vlib/vcop_nxn_block_sum/inc/ -I vlib/vcop_orientation_binning/inc/ -I vlib/vcop_prune_big_list/inc/ -I vlib/vcop_remap/inc/ -I vlib/vcop_sad_error_measure_lk/inc/ -I vlib/vcop_sum_grad_cross_inter_frame_diff_7x7/inc/ -I vlib/vcop_tensor_matrix_7x7_s16_grad/inc/ -I vlib/vcop_vec_array_l1_distance/inc/ -I vlib/vcop_vec_bin_image_dilate_cross/inc/ -I vlib/vcop_vec_bin_image_dilate_mask/inc/ -I vlib/vcop_vec_bin_image_dilate_square/inc/ -I vlib/vcop_vec_bin_image_erode_cross/inc/ -I vlib/vcop_vec_bin_image_erode_mask/inc/ -I vlib/vcop_vec_bin_image_erode_single_pixel/inc/ -I vlib/vcop_vec_bin_image_erode_square/inc/ -I vlib/vcop_vec_bin_image_morph_diff/inc/ -I vlib/vcop_vec_gradients_xy_and_magnitude/inc/ -I vlib/vcop_vec_update_ewr_mean_s16/inc/ -I vlib/vcop_vec_update_ewr_variance_s16/inc/ -I vlib/vcop_vertical_non_max_suppression/inc/ -I vlib/vcop_weight_address_bilinear_interpolation/inc/ -I vlib/vcop_weight_computation/inc/ -I imgsiglib/Average2x2/inc/ -I imgsiglib/Bayer_CFA_Horz_Upsample/inc/ -I imgsiglib/Bayer_CFA_Interpolation_Avg/inc/ -I imgsiglib/BlockAverage2x2/inc/ -I imgsiglib/Color_Space_Conversion/inc/ -I imgsiglib/Filter/inc/ -I imgsiglib/Horz_Upsample/inc/ -I imgsiglib/Integral_image/inc/ -I imgsiglib/Matrix_Mul/inc/ -I imgsiglib/Median_filter_col/inc/ -I imgsiglib/Median_filter_row/inc/ -I imgsiglib/Polyphase_Filter_Vertical_Resampling/inc/ -I imgsiglib/RGB16bitPack/inc/ -I imgsiglib/RGB16bitUnpack/inc/ -I imgsiglib/Rotate/inc/ -I imgsiglib/SAD/inc/ -I imgsiglib/TransparentBlt/inc/ -I imgsiglib/UYVY_to_YUVpl/inc/ -I imgsiglib/YCbCr422Deinterleave/inc/ -I imgsiglib/YCbCr444Deinterleave/inc/ -I imgsiglib/YCbCr444toYCbCr422/inc/ -I imgsiglib/dct8x8col_chen/inc/ -I imgsiglib/dct8x8col_odd_even/inc/ -I imgsiglib/dct8x8row_chen/inc/ -I imgsiglib/dct8x8row_odd_even/inc/ -I imgsiglib/vcop_alpha_blend_yuv420nv12/inc/ -I imgsiglib/vcop_alpha_blend_yuv422i/inc/ -I imgsiglib/vcop_bin_image_to_list/inc/ -I imgsiglib/vcop_binary_masking/inc/ -I imgsiglib/vcop_clahe_generate_lut/inc/ -I imgsiglib/vcop_clahe_process/inc/ -I imgsiglib/vcop_contrast_stretching/inc/ -I imgsiglib/vcop_fft_1024_32x16t_ver3/inc/ -I imgsiglib/vcop_fft_64_16x16t_ver1/inc/ -I imgsiglib/vcop_fft_N_16x16t_ver1/inc/ -I imgsiglib/vcop_gauss5x5PyramidKernel_16/inc/ -I imgsiglib/vcop_gauss5x5PyramidKernel_8/inc/ -I imgsiglib/vcop_image_bayer2rgb/inc/ -I imgsiglib/vcop_image_bilateral_filter/inc/ -I imgsiglib/vcop_image_deinterleave/inc/ -I imgsiglib/vcop_image_gammaCorrection/inc/ -I imgsiglib/vcop_image_interleave/inc/ -I imgsiglib/vcop_image_pyramid_uv_u8/inc/ -I imgsiglib/vcop_image_raw2rgb/inc/ -I imgsiglib/vcop_image_rgb2srgb/inc/ -I imgsiglib/vcop_image_rgb2yuv/inc/ -I imgsiglib/vcop_image_subSampling/inc/ -I imgsiglib/vcop_image_whiteBalance/inc/ -I imgsiglib/vcop_intensity_scaling/inc/ -I imgsiglib/vcop_median3x3/inc/ -I imgsiglib/vcop_rgb24_rgb/inc/ -I imgsiglib/vcop_select_list_elements/inc/ -I imgsiglib/vcop_sobel_xy/inc/ -I imgsiglib/vcop_soft_isp/inc/ -I imgsiglib/vcop_yuv420_fir2d_separable/inc/ -I imgsiglib/vcop_yuv_420nv12_to_422uyvy/inc/ -I imgsiglib/vcop_yuv_422uyvy_to_420nv12/inc/ -I imgsiglib/vcop_yuv_padding/inc/ -I imgsiglib/vcop_yuv_scalar/inc/ -I radarlib/vcop_beam_forming/inc/ -I radarlib/vcop_dcoffset_windowing/inc/ -I radarlib/vcop_fft_npt_16ix16o/inc/ -I radarlib/vcop_peak_detection/inc/ -I ./common -I ./inc -DINPUTTILE .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c -oC:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.obj
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
     };
     ^
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65392' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65326' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65328' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65363' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65317' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65357' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65420' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65355' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65308' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65340' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65410' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65343' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65370' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65315' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65315' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65322' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65318' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65342' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65299' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65364' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65303' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65321' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65325' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65364' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65325' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65386' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65326' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65297' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65360' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65384' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65326' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65437' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65311' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65348' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65305' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65305' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65384' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65343' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65373' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65313' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65320' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65311' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65314' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65314' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65344' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65329' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65306' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65365' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65386' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65365' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65314' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65408' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65357' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65437' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65328' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65319' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65353' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65369' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65283' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65373' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65337' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65326' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65408' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65351' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65322' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65355' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65295' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65344' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65285' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65323' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65369' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65328' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65360' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65309' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65437' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65379' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65343' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65313' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65321' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65420' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65355' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65404' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65316' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65404' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65311' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65350' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65392' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65311' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65363' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65299' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65326' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65315' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65308' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65361' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65333' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65348' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65314' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65392' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65357' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65305' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65373' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65351' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65302' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65363' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65361' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65375' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65362' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65329' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65356' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65386' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65420' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65312' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65292' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65317' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65390' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65387' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65309' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65334' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65390' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65365' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65375' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65384' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65356' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65362' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65325' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65351' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65312' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65373' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65319' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65364' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65332' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65375' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65305' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65334' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65437' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65404' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65420' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65342' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65356' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65387' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65320' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65333' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65366' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65297' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65410' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65348' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65340' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65384' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65390' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65370' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65297' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65387' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65404' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65340' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65288' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65345' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65420' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65390' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65364' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65327' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65309' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65355' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65360' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65379' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65362' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65366' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65402' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65345' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65313' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65361' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65355' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65334' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65369' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65313' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65308' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65390' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65332' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65331' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65310' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65285' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65363' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65414' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65331' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65361' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65344' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65328' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65484' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65331' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65348' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65397' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65292' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65328' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65387' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65351' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65381' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65347' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65332' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65529' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65408' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65473' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65333' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65404' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65353' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65323' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65466' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65387' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65410' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65420' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65293' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65358' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65375' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65401' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65318' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65365' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65410' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65483' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65325' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65338' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65349' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65356' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65365' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65364' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65288' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65364' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65359' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65370' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65392' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65357' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65446' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65422' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65320' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65415' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65352' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65380' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65400' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65455' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65332' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65321' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65450' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65435' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65330' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65340' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65429' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65431' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65357' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65335' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65476' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65430' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65375' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65513' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65437' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65334' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65353' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65458' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65371' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65462' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65313' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65413' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65500' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65356' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65437' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65374' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65502' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65504' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65490' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65533' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65444' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65474' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65304' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65410' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65392' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65391' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65406' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65304' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65304' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65461' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65299' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65468' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65328' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65408' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65388' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65387' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65319' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65369' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65467' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65508' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65363' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65440' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65398' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65447' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65394' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65426' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65445' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65339' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65379' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65509' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65519' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65373' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65510' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65300' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65454' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65442' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65419' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65507' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65318' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65478' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65448' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65367' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65501' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65434' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65353' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65481' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65343' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65534' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65489' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65357' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65432' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65453' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65378' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65470' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65517' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65411' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65493' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65518' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65512' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65485' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65307' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65351' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65497' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65443' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65496' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65346' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65492' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65532' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65463' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65457' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65376' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65469' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65405' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65472' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65524' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65491' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65377' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65418' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65522' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65353' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65417' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65416' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65530' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65452' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65372' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65427' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65336' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65392' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65314' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65350' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65480' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65396' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65487' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65441' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65439' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65465' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65307' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65424' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65495' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65348' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65354' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65526' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65425' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65433' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65464' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65409' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65477' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65438' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65395' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65488' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65412' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65459' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65340' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65479' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65423' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65363' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65375' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65521' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65515' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65456' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65368' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65535' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65428' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65494' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65389' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65520' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65505' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65503' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65421' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65499' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65393' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65382' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65407' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65486' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65531' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65525' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65471' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65383' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65506' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65498' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65511' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65516' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65482' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65385' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65449' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65528' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65451' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65314' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65399' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65514' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65403' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65460' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65436' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65475' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65523' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65345' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65312' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    .\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.c:5136:1: error: narrowing conversion of '65527' from 'int' to 'int16_t {aka short int}' inside { } [-Wnarrowing]
    gmake[2]: *** [C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.obj] Error 1
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    gmake[1]: *** [all] Error 2
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    gmake: *** [all] Error 2
    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00>
    Thanks and Regards,
    Ganesh

  • Ganesh,

       I see that you are using g++ compiler for host emulation. Currently we dont support g++ compiler for host emulation build. Can you build using Microsoft Visual C++ compiler as mentioned in the eve_sw_getting_started.pdf?

    Regards,

    Anshu

  • Hi Anshu,

    I installed Microsoft Visual Studio 11.0 and executed 'C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\vcvarsall.bat' as mentioned in eve_sw_getting_started.pdf, but getting the same error as mentioned

    before. :/

    How do I set up Microsoft Visual C++ compiler? Is there some other way to do it?

    Regards,

    Ganesh

  • Hi Anshu,

    You were right! The mingw compiler was being used for compiling the eve source code for PC.

    In C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\makerules\makerules_eve.mk file,

    we need to set up the value of "HOST_TOOLCHAIN_PATH=C:/MinGW"  <=(this was default value after I extracted the eve source code provided by TI) to  "HOST_TOOLCHAIN_PATH=VC"

    after doing I am still facing the following issue:

    It seems the library file required for compiling the eve code for PC as target are missing in "C:\VISION_SDK_02_12_00_00_adaboost\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils\libs\PC" !

    Do I need to build C:\VISION_SDK_02_12_00_00_adaboost\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02 also for TARGET_PLATFORM=PC   ??

    Thanks and Regards,

    Ganesh

  • Hi Anshu,

    I successfully built the 'REL.DMAUTILS.00.08.00.02' as mentioned in the document 'DMAUtilsLibrary_UserGuide.pdf' by using the command : >> gmake CORE=eve TARGET_PLATFORM=PC
    A 'dmautils.lib' file is created in "C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils\libs\PC\eve\debug"

    I also built the 'REL.ALGFRAMEWORK.02.08.00.00' as mentioned in 'bam_algframework_userguide.pdf' by using the command : >>
    gmake CORE=eve TARGET_PLATFORM=PC TARGET_BUILD=debug
    A 'algframework.lib' file is created in "C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.ALGFRAMEWORK.02.08.00.00\algframework\lib\PC\eve\debug"

    then , I tried to built the eve source code again, still I get the following error!! Following is the complete log:


    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00>gmake TARGET_BUILD=debug TARGET_PLATFORM=PC SHOW_COMMANDS=1
    START_TIME 16:07:59,17
    ======== STARTERWARE =================
    gmake -C ./starterware -f Makefile TARGET_SOC=vayu CORE=eve
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin/mkdir -p ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo /nologo /MACHINE:X86 /OUT:.\libs\PC\debug\libevestarterware_eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\INTH.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mbox.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mmu.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\pcache.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\sctm.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    gmake -C ./starterware -f Makefile TARGET_SOC=vayu CORE=dsp
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin/mkdir -p ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo /nologo /MACHINE:X86 /OUT:.\libs\PC\debug\libevestarterware_eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\INTH.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mbox.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mmu.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\pcache.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\sctm.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    gmake -C ./starterware -f Makefile TARGET_SOC=vme CORE=eve
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin/mkdir -p ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo /nologo /MACHINE:X86 /OUT:.\libs\PC\debug\libevestarterware_eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\INTH.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mbox.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mmu.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\pcache.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\sctm.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    gmake -C ./starterware -f Makefile TARGET_SOC=vme CORE=dsp
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin/mkdir -p ".\libs\PC\debug" || cd ".\libs\PC\debug"
    echo Linking .\libs\PC\debug\libevestarterware_eve.lib
    Linking .\libs\PC\debug\libevestarterware_eve.lib
    echo /nologo /MACHINE:X86 /OUT:.\libs\PC\debug\libevestarterware_eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\INTH.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mbox.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\mmu.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\pcache.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\starterware\drivers\src\host_pc\sctm.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    del ar_cmd.txt
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/starterware'
    .
    ======== KERNELS =================
    gmake -C ./kernels -f makefile
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    .
    ======== IP KERNELS KERNELC =================
    gmake -f makefile_generatelib KERNEL_MODE=KERNELC FILE_LIST=kernel_priv_list.txt LIB_NAME=libeveprivkernels.eve.lib
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    echo Linking lib\debug\libeveprivkernels.eve.lib
    Linking lib\debug\libeveprivkernels.eve.lib
    echo /nologo /MACHINE:X86 /OUT:lib\debug\libeveprivkernels.eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\init_disparity_hammingDistance_row_params.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\vcop_disparity_hammingDistance32_getPtr.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\vcop_disparity_hammingDistance32_row_kernel_wrapper.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_sad8_row\src_kernelC\init_disparity_sad8_row_params.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_sad16_row\src_kernelC\init_disparity_sad16_row_params.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_kernelC\hScore.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_kernelC\xgrad.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_kernelC\ygrad.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_median_filter_mxn_u8\src_kernelC\vcop_median_filter_mxn_u8.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_median_filter_mxn_u8\src_kernelC\vcop_median_filter_mxn_u8_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\bam_helper\bam_disparityHamDist_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\bam_helper\bam_disparityHamDist_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\bam_helper\bam_natcDisparityHamDist_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\bam_helper\bam_natcDisparityHamDist_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9\bam_helper\bam_fast9_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9\bam_helper\bam_fast9_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9_score\bam_helper\bam_fast9_score_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9_score\bam_helper\bam_fast9_score_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\bam_helper\bam_harrisScore_32_7x7_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\bam_helper\bam_harrisScore_32_7x7_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\bam_helper\bam_harrisScore_32_methodB_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\bam_helper\bam_harrisScore_32_methodB_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\bam_helper\bam_natcHarrisScore_32_7x7_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\bam_helper\bam_natcHarrisScore_32_7x7_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_glcm\bam_helper\bam_glcm_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_glcm\bam_helper\bam_glcm_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hog_vector\bam_helper\bam_vcop_hog_vector_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hog_vector\bam_helper\bam_vcop_hog_vector_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_circles\bam_helper\bam_hough_for_circles_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_circles\bam_helper\bam_hough_for_circles_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_location_matrix\bam_helper\bam_location_matrix_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_location_matrix\bam_helper\bam_location_matrix_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_median_filter_mxn_u8\bam_helper\bam_median_filter_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_median_filter_mxn_u8\bam_helper\bam_median_filter_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multipoint_harrisScore_u16\bam_helper\bam_multipoint_harrisScore_u16_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multipoint_harrisScore_u16\bam_helper\bam_multipoint_harrisScore_u16_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_orientation_binning\bam_helper\bam_orientation_binning_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_orientation_binning\bam_helper\bam_orientation_binning_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_soft_isp\bam_helper\bam_soft_isp_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_soft_isp\bam_helper\bam_soft_isp_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_generate_lut\bam_helper\bam_vcop_clahe_gen_lut_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_generate_lut\bam_helper\bam_vcop_clahe_gen_lut_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_process\bam_helper\bam_vcop_clahe_process_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_process\bam_helper\bam_vcop_clahe_process_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\vcop_disparity_hammingDistance32_RL_row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\vcop_disparity_hammingDistance32_row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\vcop_disparity_hammingDistance64_row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_kernelC\vcop_disparity_postprocess_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_sad8_row\src_kernelC\vcop_disparity_sad8_row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_sad16_row\src_kernelC\vcop_disparity_sad16_row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9\src_kernelC\vcop_fast9_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9_score\src_kernelC\vcop_fast9_score_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_kernelC\vcop_harrisScore_7x7_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\src_kernelC\vcop_harrisScore_32_7x7_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_glcm\src_kernelC\vcop_glcm_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hog_vector\src_kernelC\vcop_hog_vector_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_circles\src_kernelC\vcop_hough_for_circles_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_location_matrix\src_kernelC\vcop_location_matrix_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_median_filter_mxn_u8\src_kernelC\vcop_median_filter_mxn_u8_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multipoint_harrisScore_u16\src_kernelC\vcop_multipoint_harrisScore_u16_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_orientation_binning\src_kernelC\vcop_orientation_binning_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_soft_isp\src_kernelC\vcop_soft_isp_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_generate_lut\src_kernelC\vcop_clahe_generate_lut_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_process\src_kernelC\vcop_clahe_process_kernel.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    vcop_median_filter_mxn_u8_host.obj : warning LNK4006: "void __cdecl vcop_select_kth_smallest_from_hist(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned short)" (?vcop_select_kth_smallest_from_hist@@YAXV?$VPTR@F@vcop@@00V?$VPTR@E@2@G@Z) already defined in vcop_median_filter_mxn_u8_kernel.obj; second definition ignored
    vcop_median_filter_mxn_u8_host.obj : warning LNK4006: "void __cdecl vcop_update_block_histogram_8c(class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<short>,class vcop::VPTR<char>,class vcop::VPTR<char>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned int,unsigned int,unsigned int)" (?vcop_update_block_histogram_8c@@YAXV?$VPTR@E@vcop@@0V?$VPTR@F@2@V?$VPTR@D@2@211III@Z) already defined in vcop_median_filter_mxn_u8_kernel.obj; second definition ignored
    del ar_cmd.txt
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    .
    ======== IP KERNELS NATC =================
    gmake -f makefile_generatelib KERNEL_MODE=NATC FILE_LIST=kernel_priv_list.txt LIB_NAME=libeveprivnatckernels.eve.lib
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    echo Linking lib\debug\libeveprivnatckernels.eve.lib
    Linking lib\debug\libeveprivnatckernels.eve.lib
    echo /nologo /MACHINE:X86 /OUT:lib\debug\libeveprivnatckernels.eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_C\vcop_disparity_hammingDistance32_row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_hammingDistance_row\src_C\vcop_disparity_hammingDistance64_row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_sad8_row\src_C\vcop_disparity_sad8_row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_disparity_sad16_row\src_C\vcop_disparity_sad16_row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9\src_C\vcop_fast9_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_fast9_score\src_C\vcop_fast9_score_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_7x7\src_C\vcop_harrisScore_7x7_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_harrisScore_32_7x7\src_C\vcop_harrisScore_32_7x7_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_glcm\src_C\vcop_glcm_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_circles\src_C\vcop_hough_for_circles_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_location_matrix\src_C\vcop_location_matrix_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_median_filter_mxn_u8\src_C\vcop_median_filter_mxn_u8_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multipoint_harrisScore_u16\src_C\vcop_multipoint_harrisScore_u16_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_orientation_binning\src_C\vcop_orientation_binning_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_soft_isp\src_C\vcop_soft_isp_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_generate_lut\src_C\vcop_clahe_generate_lut_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_clahe_process\src_C\vcop_clahe_process_cn.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    del ar_cmd.txt
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    .
    ======== NON IP KERNELS KERNELC =================
    gmake -f makefile_generatelib KERNEL_MODE=KERNELC FILE_LIST=kernel_list.txt LIB_NAME=libevekernels.eve.lib
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    echo Linking lib\debug\libevekernels.eve.lib
    Linking lib\debug\libevekernels.eve.lib
    echo /nologo /MACHINE:X86 /OUT:lib\debug\libevekernels.eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Bayer_CFA_Horz_Upsample\src_kernelC\EVEGenFilterCoeffs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Horz_Upsample\src_kernelC\EVEGenFilterCoeffs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Polyphase_Filter_Vertical_Resampling\src_kernelC\EVEGenFilterCoeffs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv420nv12\src_kernelC\vcop_alpha_blend_yuv420nv12_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv422i\src_kernelC\vcop_alpha_blend_yuv422i_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_intensity_scaling\src_kernelC\vcop_intensity_scaling.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\src_kernelC\merge_sort_init.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\src_kernelC\merge_sort_kernel_hard.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_block_statistics\src_kernelC\vcop_block_statistics_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_determinant_tensor_matrix\src_kernelC\vcop_calc_determinant_tensor_matrix_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_inverse_structure_tensor_2x2\src_kernelC\vcop_calc_inverse_structure_tensor_2x2_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_new_lk_xy\src_kernelC\vcop_calc_new_lk_xy_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\src_kernelC\init_census_16bits_params.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\src_kernelC\init_census_8bits_params.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_copy_new_lk_xy\src_kernelC\vcop_copy_new_lk_xy_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_foreach_multiblock_bilinear_interp_7x7_u8\src_kernelC\vcop_foreach_multiblock_bilinear_interp_7x7_u8_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_grayscale_morphology_flat\src_kernelC\vcop_grayscale_morphology.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_7x7_u8\src_kernelC\vcop_multiblock_bilinear_interp_7x7_u8_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_intlv_7x7_s16\src_kernelC\vcop_multiblock_bilinear_interp_intlv_7x7_s16_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_gradient_xy\src_kernelC\vcop_multiblock_gradient_xy_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\src_kernelC\init_slidingSum_params.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_remap_bb_approach.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_remap_tile_approach.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_sad_error_measure_lk\src_kernelC\vcop_sad_error_measure_lk_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_sum_grad_cross_inter_frame_diff_7x7\src_kernelC\vcop_sum_grad_cross_inter_frame_diff_7x7_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_tensor_matrix_7x7_s16_grad\src_kernelC\vcop_tensor_matrix_7x7_s16_grad_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_address_bilinear_interpolation\src_kernelC\vcop_weight_address_bilinear_interpolation_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_computation\src_kernelC\vcop_weight_computation_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_npt_16ix16o_gen_twiddleFactor.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_npt_16ix16o_wrapper.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\BlockAverage2x2\bam_helper\bam_blockAverage2x2_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\BlockAverage2x2\bam_helper\bam_blockAverage2x2_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\BlockAverage2x2\bam_helper\bam_natcBlockAverage2x2_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\BlockAverage2x2\bam_helper\bam_natcBlockAverage2x2_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Filter\bam_helper\bam_image_filter_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Filter\bam_helper\bam_image_filter_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Filter\bam_helper\bam_image_natcFilter_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Filter\bam_helper\bam_image_natcFilter_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Integral_image\bam_helper\bam_image_integralimage_u8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Integral_image\bam_helper\bam_image_integralimage_u8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv420nv12\bam_helper\bam_alpha_blend_yuv420nv12_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv420nv12\bam_helper\bam_alpha_blend_yuv420nv12_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv422i\bam_helper\bam_alpha_blend_yuv422i_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv422i\bam_helper\bam_alpha_blend_yuv422i_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_bin_image_to_list\bam_helper\bam_bin_image_to_list_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_bin_image_to_list\bam_helper\bam_bin_image_to_list_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_binary_masking\bam_helper\bam_binary_masking_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_binary_masking\bam_helper\bam_binary_masking_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_contrast_stretching\bam_helper\bam_contrast_stretching_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_contrast_stretching\bam_helper\bam_contrast_stretching_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_contrast_stretching\bam_helper\bam_histogram_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_contrast_stretching\bam_helper\bam_histogram_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_16\bam_helper\bam_gauss5x5Pyramid_16_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_16\bam_helper\bam_gauss5x5Pyramid_16_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_16\bam_helper\bam_natcGauss5x5Pyramid_16_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_16\bam_helper\bam_natcGauss5x5Pyramid_16_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_8\bam_helper\bam_gauss5x5Pyramid_8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_8\bam_helper\bam_gauss5x5Pyramid_8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_8\bam_helper\bam_natcGauss5x5Pyramid_8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_8\bam_helper\bam_natcGauss5x5Pyramid_8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_bayer2rgb\bam_helper\bam_image_bayer2rgb_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_bayer2rgb\bam_helper\bam_image_bayer2rgb_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_deinterleave\bam_helper\bam_image_deinterleave_u8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_deinterleave\bam_helper\bam_image_deinterleave_u8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_gammaCorrection\bam_helper\bam_image_gammaCorrection_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_gammaCorrection\bam_helper\bam_image_gammaCorrection_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_gammaCorrection\bam_helper\bam_image_natcGammaCorrection_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_gammaCorrection\bam_helper\bam_image_natcGammaCorrection_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_interleave\bam_helper\bam_image_interleave_u8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_interleave\bam_helper\bam_image_interleave_u8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_pyramid_uv_u8\bam_helper\bam_image_pyramid_uv_u8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_pyramid_uv_u8\bam_helper\bam_image_pyramid_uv_u8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2srgb\bam_helper\bam_image_rgb2srgb_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2srgb\bam_helper\bam_image_rgb2srgb_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2yuv\bam_helper\bam_image_rgb2yuv_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2yuv\bam_helper\bam_image_rgb2yuv_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_raw2rgb\bam_helper\bam_natcRaw2rgb16_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_raw2rgb\bam_helper\bam_natcRaw2rgb16_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_raw2rgb\bam_helper\bam_raw2rgb16_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_raw2rgb\bam_helper\bam_raw2rgb16_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_subSampling\bam_helper\bam_image_subSampling_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_subSampling\bam_helper\bam_image_subSampling_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_whiteBalance\bam_helper\bam_image_natcWhiteBalance_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_whiteBalance\bam_helper\bam_image_natcWhiteBalance_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_whiteBalance\bam_helper\bam_image_whiteBalance_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_whiteBalance\bam_helper\bam_image_whiteBalance_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_intensity_scaling\bam_helper\bam_intensity_scaling_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_intensity_scaling\bam_helper\bam_intensity_scaling_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_median3x3\bam_helper\bam_median3x3_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_median3x3\bam_helper\bam_median3x3_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_select_list_elements\bam_helper\bam_select_list_elements_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_select_list_elements\bam_helper\bam_select_list_elements_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_sobel_xy\bam_helper\bam_sobel_xy_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_sobel_xy\bam_helper\bam_sobel_xy_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_sobel_xy\bam_helper\bam_sobel_xy_mag_thresholding_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_sobel_xy\bam_helper\bam_sobel_xy_mag_thresholding_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv420_fir2d_separable\bam_helper\bam_yuv420_fir2d_separable_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv420_fir2d_separable\bam_helper\bam_yuv420_fir2d_separable_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_420nv12_to_422uyvy\bam_helper\bam_yuv_420nv12_to_422uyvy_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_420nv12_to_422uyvy\bam_helper\bam_yuv_420nv12_to_422uyvy_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_422uyvy_to_420nv12\bam_helper\bam_yuv_422uyvy_to_420nv12_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_422uyvy_to_420nv12\bam_helper\bam_yuv_422uyvy_to_420nv12_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_padding\bam_helper\bam_vcop_yuv_left_right_padding_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_padding\bam_helper\bam_vcop_yuv_left_right_padding_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_scalar\bam_helper\bam_vcop_yuv_scalar_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_scalar\bam_helper\bam_vcop_yuv_scalar_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\bam_helper\bam_blockSortU32_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\bam_helper\bam_blockSortU32_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\bam_helper\bam_natcBlockSortU32_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\bam_helper\bam_natcBlockSortU32_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_block_statistics\bam_helper\bam_block_statistics_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_block_statistics\bam_helper\bam_block_statistics_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_determinant_tensor_matrix\bam_helper\bam_calc_determinant_tensor_matrix_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_determinant_tensor_matrix\bam_helper\bam_calc_determinant_tensor_matrix_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_inverse_structure_tensor_2x2\bam_helper\bam_calc_inverse_structure_tensor_2x2_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_inverse_structure_tensor_2x2\bam_helper\bam_calc_inverse_structure_tensor_2x2_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_canny_non_maximum_suppression\bam_helper\bam_canny_non_maximum_suppression_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_canny_non_maximum_suppression\bam_helper\bam_canny_non_maximum_suppression_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\bam_helper\bam_census_16bits_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\bam_helper\bam_census_16bits_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\bam_helper\bam_natcCensus_16bits_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\bam_helper\bam_natcCensus_16bits_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\bam_helper\bam_census_8bits_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\bam_helper\bam_census_8bits_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\bam_helper\bam_natcCensus_8bits_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\bam_helper\bam_natcCensus_8bits_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_compute_rBrief\bam_helper\bam_rBrief_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_compute_rBrief\bam_helper\bam_rBrief_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_extract_bit_field_u32\bam_helper\bam_extract_bit_field_u32_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_extract_bit_field_u32\bam_helper\bam_extract_bit_field_u32_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\bam_helper\bam_generateList_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\bam_helper\bam_generateList_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\bam_helper\bam_natcGenerateList_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\bam_helper\bam_natcGenerateList_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hammingDistance\bam_helper\bam_feature_matching_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hammingDistance\bam_helper\bam_feature_matching_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_horizontal_non_max_suppression\bam_helper\bam_horizontal_non_max_suppression_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_horizontal_non_max_suppression\bam_helper\bam_horizontal_non_max_suppression_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_lines\bam_helper\bam_hough_for_lines_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_lines\bam_helper\bam_hough_for_lines_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_7x7_u8\bam_helper\bam_multiblock_bilinear_interp_7x7_u8_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_7x7_u8\bam_helper\bam_multiblock_bilinear_interp_7x7_u8_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_intlv_7x7_s16\bam_helper\bam_multiblock_bilinear_interp_intlv_7x7_s16_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_intlv_7x7_s16\bam_helper\bam_multiblock_bilinear_interp_intlv_7x7_s16_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_gradient_xy\bam_helper\bam_multiblock_gradient_xy_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_gradient_xy\bam_helper\bam_multiblock_gradient_xy_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\bam_helper\bam_natcNcc_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\bam_helper\bam_natcNcc_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\bam_helper\bam_ncc_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\bam_helper\bam_ncc_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S16\bam_helper\bam_nonMaxSuppress_mxn_S16bitPack_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S16\bam_helper\bam_nonMaxSuppress_mxn_S16bitPack_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S32\bam_helper\bam_natcNonMaxSuppress_mxn_S32_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S32\bam_helper\bam_natcNonMaxSuppress_mxn_S32_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S32\bam_helper\bam_nonMaxSuppress_mxn_S32_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S32\bam_helper\bam_nonMaxSuppress_mxn_S32_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nxn_block_sum\bam_helper\bam_nxn_block_sum_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nxn_block_sum\bam_helper\bam_nxn_block_sum_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nxn_block_sum\bam_helper\bam_nxn_block_sum_interleaved_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nxn_block_sum\bam_helper\bam_nxn_block_sum_interleaved_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_prune_big_list\bam_helper\bam_prune_big_list_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_prune_big_list\bam_helper\bam_prune_big_list_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_memcpy_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_memcpy_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_remap_bilinear_interpolate8b_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_remap_bilinear_interpolate8b_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_remap_bilinear_interpolateUV_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_remap_bilinear_interpolateUV_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_remap_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\bam_helper\bam_remap_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_tensor_matrix_7x7_s16_grad\bam_helper\bam_tensor_matrix_7x7_s16_grad_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_tensor_matrix_7x7_s16_grad\bam_helper\bam_tensor_matrix_7x7_s16_grad_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\bam_helper\bam_gradXYmag_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\bam_helper\bam_gradXYmag_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\bam_helper\bam_natcGradXYmag_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\bam_helper\bam_natcGradXYmag_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\bam_helper\bam_normalizedGradXyList_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\bam_helper\bam_normalizedGradXyList_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vertical_non_max_suppression\bam_helper\bam_vertical_non_max_suppression_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vertical_non_max_suppression\bam_helper\bam_vertical_non_max_suppression_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_computation\bam_helper\bam_weight_computation_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_computation\bam_helper\bam_weight_computation_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_dcoffset_windowing\bam_helper\bam_dcoffset_windowing_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_dcoffset_windowing\bam_helper\bam_dcoffset_windowing_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\bam_helper\bam_fft_npt_16ix16o_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\bam_helper\bam_fft_npt_16ix16o_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_beam_forming\bam_helper\bam_beam_forming_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_beam_forming\bam_helper\bam_beam_forming_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_peak_detection\bam_helper\bam_peak_detection_cfar_ca_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_peak_detection\bam_helper\bam_peak_detection_cfar_ca_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_peak_detection\bam_helper\bam_peak_detection_energy_compute_exec_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_peak_detection\bam_helper\bam_peak_detection_energy_compute_helper_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Average2x2\src_kernelC\vcop_avg2x2_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Bayer_CFA_Horz_Upsample\src_kernelC\vcop_BayerCFA_HorzUpsample_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Bayer_CFA_Interpolation_Avg\src_kernelC\vcop_BayerCFA_interpolate_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\BlockAverage2x2\src_kernelC\vcop_blockAverage2x2_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Color_Space_Conversion\src_kernelC\vcop_rgb_to_yuv_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8col_chen\src_kernelC\vcop_dct8x8col_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8col_odd_even\src_kernelC\vcop_dct8x8col_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8row_chen\src_kernelC\vcop_dct8x8row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8row_odd_even\src_kernelC\vcop_dct8x8row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Filter\src_kernelC\vcop_filter_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Horz_Upsample\src_kernelC\vcop_HorzUpsample_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Integral_image\src_kernelC\eve_integral_image_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Median_filter_col\src_kernelC\vcop_median_filter_col_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Median_filter_row\src_kernelC\vcop_median_filter_row_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Polyphase_Filter_Vertical_Resampling\src_kernelC\vcop_FilterPoly_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\RGB16bitPack\src_kernelC\vcop_rgb_rgb16_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\RGB16bitUnpack\src_kernelC\vcop_rgb16_rgb_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Rotate\src_kernelC\vcop_rotate_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\SAD\src_kernelC\vcop_SAD_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\TransparentBlt\src_kernelC\vcop_transparentBlt_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\UYVY_to_YUVpl\src_kernelC\UYVY_to_YUVpl_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\YCbCr422Deinterleave\src_kernelC\vcop_YCbCr422Deinterleave_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\YCbCr444Deinterleave\src_kernelC\vcop_YCbCr444Deinterleave_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\YCbCr444toYCbCr422\src_kernelC\vcop_YCbCr444Downsample422_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv420nv12\src_kernelC\vcop_alpha_blend_yuv420nv12_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv422i\src_kernelC\vcop_alpha_blend_yuv422i_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_bin_image_to_list\src_kernelC\vcop_bin_image_to_list_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_binary_masking\src_kernelC\vcop_binary_masking_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_contrast_stretching\src_kernelC\vcop_contrast_stretching_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_fft_1024_32x16t_ver3\src_kernelC\vcop_fft_1024_32x16t_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_fft_64_16x16t_ver1\src_kernelC\vcop_fft_64_16x16t_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_fft_N_16x16t_ver1\src_kernelC\vcop_fft_N_16x16t_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_16\src_kernelC\vcop_gauss5x5PyramidKernel_16_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_8\src_kernelC\vcop_gauss5x5PyramidKernel_8_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_bayer2rgb\src_kernelC\vcop_BayerCFA_interpolate_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_bilateral_filter\src_kernelC\vcop_bilateralFilter_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_deinterleave\src_kernelC\vcop_image_deinterleave_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_gammaCorrection\src_kernelC\vcop_gamma_correction_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_interleave\src_kernelC\vcop_image_interleave_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_pyramid_uv_u8\src_kernelC\vcop_image_pyramid_uv_u8_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2srgb\src_kernelC\vcop_rgb_srgb_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2yuv\src_kernelC\vcop_rgb_to_yuv_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_raw2rgb\src_kernelC\vcop_raw2rgb_i16u_o16u_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_subSampling\src_kernelC\vcop_bayer_subsampling_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_whiteBalance\src_kernelC\vcop_white_balance_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_intensity_scaling\src_kernelC\vcop_intensity_scaling_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_median3x3\src_kernelC\vcop_median3x3_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_rgb24_rgb\src_kernelC\vcop_rgb24_rgb_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_select_list_elements\src_kernelC\vcop_select_list_elements_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_sobel_xy\src_kernelC\vcop_sobel_xy_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv420_fir2d_separable\src_kernelC\vcop_yuv420_fir2d_separable_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_420nv12_to_422uyvy\src_kernelC\vcop_yuv_420nv12_to_422uyvy_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_422uyvy_to_420nv12\src_kernelC\vcop_yuv_422uyvy_to_420nv12_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_padding\src_kernelC\vcop_yuv_left_right_padding_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_scalar\src_kernelC\vcop_yuv_scalar_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\src_kernelC\merge_sort_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_bhattacharyaDistance\src_kernelC\vcop_bhattacharyaDistance_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_block_statistics\src_kernelC\vcop_block_statistics_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_determinant_tensor_matrix\src_kernelC\vcop_calc_determinant_tensor_matrix_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_inverse_structure_tensor_2x2\src_kernelC\vcop_calc_inverse_structure_tensor_2x2_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_new_lk_xy\src_kernelC\vcop_calc_new_lk_xy_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_canny_non_maximum_suppression\src_kernelC\vcop_canny_non_maximum_suppression_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\src_kernelC\vcop_census_16bits_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\src_kernelC\vcop_census_8bits_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_compute_rBrief\src_kernelC\vcop_compute_rBrief_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_copy_new_lk_xy\src_kernelC\vcop_copy_new_lk_xy_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_extract_bit_field_u32\src_kernelC\vcop_extract_bit_field_u32_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_foreach_multiblock_bilinear_interp_7x7_u8\src_kernelC\vcop_foreach_multiblock_bilinear_interp_7x7_u8_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\src_kernelC\vcop_generateList_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_gradient5x5PyramidKernel_8\src_kernelC\vcop_gradient5x5PyramidKernel_8_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_grayscale_morphology_flat\src_kernelC\vcop_grayscale_morphology_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hammingDistance\src_kernelC\vcop_feature_matching_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hammingDistance\src_kernelC\vcop_hamming_distance_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_horizontal_non_max_suppression\src_kernelC\vcop_horizontal_non_max_suppression_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_lines\src_kernelC\vcop_hough_for_lines_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_7x7_u8\src_kernelC\vcop_multiblock_bilinear_interp_7x7_u8_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_intlv_7x7_s16\src_kernelC\vcop_multiblock_bilinear_interp_intlv_7x7_s16_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_gradient_xy\src_kernelC\vcop_multiblock_gradient_xy_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\src_kernelC\vcop_ncc_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S16\src_kernelC\vcop_nonMaxSuppress_mxn_16s_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S32\src_kernelC\vcop_nonMaxSuppress_mxn_32s_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_normalFlow\src_kernelC\vcop_normalFlow_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nxn_block_sum\src_kernelC\vcop_nxn_block_sum_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_prune_big_list\src_kernelC\vcop_prune_big_list_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolate16b.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolate8b.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateLumaPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateUV.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateYUV420SPchroma.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateYUV420SPchromaPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateYUV422Ichroma.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateYUV422IchromaPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_bilinearInterpolateYUV422Iluma.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_chromaTLUIndexCalc.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_chromaTLUIndexCalcPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_deInterleaveYUV422IBE.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_deInterleaveYUV422ILE.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_dsTLUindexAndFrac.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_dsTLUindexAndFracPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_nnInterpolate420SPchroma.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_nnInterpolate420SPchromaPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_nnInterpolate422Ichroma.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_nnInterpolate422IchromaPblockUpdate.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_kernelC\vcop_nnInterpolate8b.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_sad_error_measure_lk\src_kernelC\vcop_sad_error_measure_lk_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_sum_grad_cross_inter_frame_diff_7x7\src_kernelC\vcop_sum_grad_cross_inter_frame_diff_7x7_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_tensor_matrix_7x7_s16_grad\src_kernelC\vcop_tensor_matrix_7x7_s16_grad_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_array_l1_distance\src_kernelC\vcop_vec_array_l1_distance_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_dilate_cross\src_kernelC\vcop_vec_bin_image_dilate_cross_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_dilate_mask\src_kernelC\vcop_vec_bin_image_dilate_mask_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_dilate_square\src_kernelC\vcop_vec_bin_image_dilate_square_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_cross\src_kernelC\vcop_vec_bin_image_erode_cross_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_mask\src_kernelC\vcop_vec_bin_image_erode_mask_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_single_pixel\src_kernelC\vcop_vec_bin_image_erode_single_pixel_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_square\src_kernelC\vcop_vec_bin_image_erode_square_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_morph_diff\src_kernelC\vcop_vec_bin_image_morph_diff_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\src_kernelC\vcop_vec_gradients_xy_and_magnitude_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_update_ewr_mean_s16\src_kernelC\vcop_vec_update_ewr_mean_s16_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_update_ewr_variance_s16\src_kernelC\vcop_vec_update_ewr_variance_s16_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vertical_non_max_suppression\src_kernelC\vcop_vertical_non_max_suppression_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_address_bilinear_interpolation\src_kernelC\vcop_weight_address_bilinear_interpolation_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_computation\src_kernelC\vcop_weight_computation_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_dcoffset_windowing\src_kernelC\vcop_dcoffset_windowing_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_1024_16ix16o_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_1024_16ix16o_kernel_overflow.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_128_16ix16o_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_128_16ix16o_kernel_overflow.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_256_16ix16o_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_256_16ix16o_kernel_overflow.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_512_16ix16o_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_512_16ix16o_kernel_overflow.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_64_16ix16o_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_64_16ix16o_kernel_overflow.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_doppler_correction_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_kernelC\vcop_fft_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_beam_forming\src_kernelC\vcop_beam_forming_kernel.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_peak_detection\src_kernelC\vcop_peak_detection_kernel.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_4@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in vcop_fft_1024_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_5(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_5@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in vcop_fft_1024_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@1100V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@1100V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@1100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_5_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_5_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_1024_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in vcop_fft_512_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in vcop_fft_512_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in vcop_fft_512_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_4@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in vcop_fft_512_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_radix2_stage_5(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_radix2_stage_5@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in vcop_fft_512_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_512_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_512_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_512_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_512_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_radix2_stage_5_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_radix2_stage_5_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_512_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in vcop_fft_256_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in vcop_fft_256_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in vcop_fft_256_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_4@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in vcop_fft_256_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_256_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_256_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_256_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_256_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in vcop_fft_128_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in vcop_fft_128_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in vcop_fft_128_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_radix2_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_radix2_stage_4@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in vcop_fft_128_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_128_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in vcop_fft_128_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_128_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_radix2_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_radix2_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_128_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in vcop_fft_64_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGG@Z) already defined in vcop_fft_64_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in vcop_fft_64_16ix16o_kernel.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGG@Z) already defined in vcop_fft_64_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,class vcop::VPTR<short>,unsigned char,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@0EGG@Z) already defined in vcop_fft_64_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_fft_npt_16ix16o_wrapper.obj : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,class vcop::VPTR<short>,unsigned char,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@0EGG@Z) already defined in vcop_fft_64_16ix16o_kernel_overflow.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_dilate_mask(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_dilate_mask@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_erode_mask(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_erode_mask@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_dilate_rect(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_dilate_rect@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_erode_rect(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_erode_rect@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_dilate_cross(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_dilate_cross@@YAXGGGV?$VPTR@E@vcop@@GGGG00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_erode_cross(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_erode_cross@@YAXGGGV?$VPTR@E@vcop@@GGGG00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_grayscale_morphology.obj : warning LNK4006: "void __cdecl vcop_grayscale_morp_diff(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_morp_diff@@YAXGGGV?$VPTR@E@vcop@@00@Z) already defined in vcop_grayscale_morphology_kernel.obj; second definition ignored
    vcop_block_statistics_host.obj : warning LNK4006: "void __cdecl vcop_block_statistics(class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned int>,class vcop::VPTR<unsigned int>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned int>)" (?vcop_block_statistics@@YAXV?$VPTR@E@vcop@@GGGGG0V?$VPTR@G@2@V?$VPTR@I@2@2110012@Z) already defined in vcop_block_statistics_kernel.obj; second definition ignored
    merge_sort_kernel_hard.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    merge_sort_init.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    vcop_alpha_blend_yuv422i_host.obj : warning LNK4006: "void __cdecl vcop_alpha_blend_yuv422i(class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_alpha_blend_yuv422i@@YAXV?$VPTR@E@vcop@@000GGGGG@Z) already defined in vcop_alpha_blend_yuv422i_kernel.obj; second definition ignored
    vcop_alpha_blend_yuv420nv12_host.obj : warning LNK4006: "void __cdecl vcop_alpha_blend_yuv420nv12(class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_alpha_blend_yuv420nv12@@YAXV?$VPTR@E@vcop@@000GGGGG@Z) already defined in vcop_alpha_blend_yuv420nv12_kernel.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in EVEGenFilterCoeffs.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    EVEGenFilterCoeffs.obj : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in EVEGenFilterCoeffs.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    del ar_cmd.txt
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    .
    ======== NON IP KERNELS NATC =================
    gmake -f makefile_generatelib KERNEL_MODE=NATC FILE_LIST=kernel_list.txt LIB_NAME=libevenatckernels.eve.lib
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    echo Linking lib\debug\libevenatckernels.eve.lib
    Linking lib\debug\libevenatckernels.eve.lib
    echo /nologo /MACHINE:X86 /OUT:lib\debug\libevenatckernels.eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Average2x2\src_C\vcop_avg2x2_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Bayer_CFA_Horz_Upsample\src_C\EVEGenFilterCoeffs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Bayer_CFA_Horz_Upsample\src_C\vcop_BayerCFA_HorzUpsample_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Bayer_CFA_Interpolation_Avg\src_C\vcop_BayerCFA_interpolate_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\BlockAverage2x2\src_C\vcop_blockAverage2x2_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Color_Space_Conversion\src_C\vcop_rgb_to_yuv_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8col_chen\src_C\vcop_dct8x8col_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8col_odd_even\src_C\vcop_dct8x8col_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8row_chen\src_C\vcop_dct8x8row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\dct8x8row_odd_even\src_C\vcop_dct8x8row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Filter\src_C\vcop_filter_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Horz_Upsample\src_C\EVEGenFilterCoeffs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Horz_Upsample\src_C\vcop_HorzUpsample_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Integral_image\src_C\eve_integral_image_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Matrix_Mul\src_C\vcop_mat_mul_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Median_filter_col\src_C\vcop_median_filt_col_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Median_filter_row\src_C\vcop_median_filt_row_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Polyphase_Filter_Vertical_Resampling\src_C\EVEGenFilterCoeffs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Polyphase_Filter_Vertical_Resampling\src_C\vcop_filterPoly_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\RGB16bitPack\src_C\vcop_rgb_rgb16_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\RGB16bitUnpack\src_C\vcop_rgb16_rgb_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\Rotate\src_C\vcop_rotate_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\SAD\src_C\vcop_SAD_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\TransparentBlt\src_C\vcop_transparentBlt_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\UYVY_to_YUVpl\src_C\UYVY_to_YUVpl_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\UYVY_to_YUVpl\src_C\UYVY_to_YUVpl_in_data.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\UYVY_to_YUVpl\src_C\UYVY_to_YUVpl_out_data.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\YCbCr422Deinterleave\src_C\vcop_YcbCr422Deinterleave_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\YCbCr444Deinterleave\src_C\vcop_YcbCr444Deinterleave_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\YCbCr444toYCbCr422\src_C\vcop_YcbCr444Downsample_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv420nv12\src_C\vcop_alpha_blend_yuv420nv12_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_alpha_blend_yuv422i\src_C\vcop_alpha_blend_yuv422i_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_bin_image_to_list\src_C\vcop_bin_image_to_list_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_binary_masking\src_C\vcop_binary_masking_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_contrast_stretching\src_C\vcop_contrast_stretching_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_fft_1024_32x16t_ver3\src_C\vcop_fft_1024_32x16t_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_fft_64_16x16t_ver1\src_C\vcop_fft_64_16x16t_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_fft_N_16x16t_ver1\src_C\vcop_fft_N_16x16t_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_16\src_C\vcop_gauss5x5PyramidKernel_16_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_gauss5x5PyramidKernel_8\src_C\vcop_gauss5x5PyramidKernel_8_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_bayer2rgb\src_C\vcop_bayer_to_rgb.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_bilateral_filter\src_C\vcop_bilateralFilter.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_deinterleave\src_C\vcop_deinterleave.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_gammaCorrection\src_C\vcop_gammaCorrection_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_interleave\src_C\vcop_interleave.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_pyramid_uv_u8\src_C\vcop_image_pyramid_u16_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2srgb\src_C\vcop_rgb_to_srgb.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_rgb2yuv\src_C\vcop_rgb_to_yuv.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_raw2rgb\src_C\vcop_raw2rgb_i16u_o16u.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_subSampling\src_C\vcop_bayer_subSample.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_image_whiteBalance\src_C\vcop_bayer_white_balance_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_intensity_scaling\src_C\vcop_intensity_scaling_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_median3x3\src_C\vcop_median3x3_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_rgb24_rgb\src_C\vcop_rgb24_rgb_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_select_list_elements\src_C\vcop_select_list_elements_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_sobel_xy\src_C\vcop_sobel_xy_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv420_fir2d_separable\src_C\vcop_yuv420_fir2d_separable_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_420nv12_to_422uyvy\src_C\vcop_yuv_420nv12_to_422uyvy_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_422uyvy_to_420nv12\src_C\vcop_yuv_422uyvy_to_420nv12_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_padding\src_C\vcop_yuv_left_right_padding_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\imgsiglib\vcop_yuv_scalar\src_C\vcop_yuv_scalar_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\blockSortU32\src_C\vcop_sort_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_bhattacharyaDistance\src_C\vcop_bhattacharyaDistance_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_block_statistics\src_C\vcop_block_statistics_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_determinant_tensor_matrix\src_C\vcop_calc_determinant_tensor_matrix_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_inverse_structure_tensor_2x2\src_C\vcop_calc_inverse_structure_tensor_2x2_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_calc_new_lk_xy\src_C\vcop_calc_new_lk_xy_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_canny_non_maximum_suppression\src_C\vcop_canny_non_maximum_suppression_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_16bits\src_C\vcop_census_16bits_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_census_8bits\src_C\vcop_census_8bits_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_compute_rBrief\src_C\vcop_compute_rBrief_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_copy_new_lk_xy\src_C\vcop_copy_new_lk_xy_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_extract_bit_field_u32\src_C\vcop_extract_bit_field_u32_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_foreach_multiblock_bilinear_interp_7x7_u8\src_C\vcop_foreach_multiblock_bilinear_interp_7x7_u8_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\src_C\get_generateListPtr.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_generateList\src_C\vcop_generateList_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_gradient5x5PyramidKernel_8\src_C\vcop_gradient5x5PyramidKernel_8_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_grayscale_morphology_flat\src_C\vcop_grayscale_morphology_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hammingDistance\src_C\vcop_hamming_distance_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_horizontal_non_max_suppression\src_C\vcop_horizontal_non_max_suppression_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_hough_for_lines\src_C\vcop_hough_for_lines_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_7x7_u8\src_C\vcop_multiblock_bilinear_interp_7x7_u8_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_bilinear_interp_intlv_7x7_s16\src_C\vcop_multiblock_bilinear_interp_intlv_7x7_s16_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_multiblock_gradient_xy\src_C\vcop_multiblock_gradient_xy_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_ncc\src_C\vcop_ncc_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S16\src_C\vcop_nonMaxSuppress_mxn_16s_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nonMaxSuppress_mxn_S32\src_C\vcop_nonMaxSuppress_mxn_32s_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_normalFlow\src_C\vcop_normalFlow_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_nxn_block_sum\src_C\vcop_nxn_block_sum_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_prune_big_list\src_C\vcop_prune_big_list_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_remap\src_C\remap.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_sad_error_measure_lk\src_C\vcop_sad_error_measure_lk_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_sum_grad_cross_inter_frame_diff_7x7\src_C\vcop_sum_grad_cross_inter_frame_diff_7x7_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_tensor_matrix_7x7_s16_grad\src_C\vcop_tensor_matrix_7x7_s16_grad_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_array_l1_distance\src_C\vcop_vec_array_l1_distance_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_dilate_cross\src_C\vcop_vec_bin_image_dilate_cross_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_dilate_mask\src_C\vcop_vec_bin_image_dilate_mask_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_dilate_square\src_C\vcop_vec_bin_image_dilate_square_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_cross\src_C\vcop_vec_bin_image_erode_cross_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_mask\src_C\vcop_vec_bin_image_erode_mask_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_single_pixel\src_C\vcop_vec_bin_image_erode_single_pixel_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_erode_square\src_C\vcop_vec_bin_image_erode_square_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_bin_image_morph_diff\src_C\vcop_vec_bin_image_morph_diff_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_gradients_xy_and_magnitude\src_C\vcop_vec_gradients_xy_and_magnitude_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_update_ewr_mean_s16\src_C\vcop_vec_update_ewr_mean_s16_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vec_update_ewr_variance_s16\src_C\vcop_vec_update_ewr_variance_s16_c.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_vertical_non_max_suppression\src_C\vcop_vertical_non_max_suppression_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_address_bilinear_interpolation\src_C\vcop_weight_address_bilinear_interpolation_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\vlib\vcop_weight_computation\src_C\vcop_weight_computation_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_dcoffset_windowing\src_C\vcop_dcoffset_windowing_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_fft_npt_16ix16o\src_C\vcop_fft_npt_16ix16o_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_beam_forming\src_C\vcop_beam_forming_cn.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\kernels\.\radarlib\vcop_peak_detection\src_C\vcop_peak_detection_cn.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    vcop_fft_64_16x16t_c.obj : warning LNK4006: "void __cdecl vcop_fft16x16t_cn(short const *,int,short *,short *)" (?vcop_fft16x16t_cn@@YAXPBFHPAF1@Z) already defined in vcop_fft_N_16x16t_c.obj; second definition ignored
    vcop_fft_64_16x16t_c.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    vcop_YcbCr422Deinterleave_c.obj : warning LNK4006: "void __cdecl vcop_YCbCr444_Deinterleave444_char(unsigned char * const,unsigned int,unsigned char * const,unsigned char * const,unsigned char * const)" (?vcop_YCbCr444_Deinterleave444_char@@YAXQAEI000@Z) already defined in vcop_YcbCr444Deinterleave_c.obj; second definition ignored
    vcop_YcbCr422Deinterleave_c.obj : warning LNK4006: "void __cdecl vcop_YCbCr444_Deinterleave444_short(unsigned short * const,unsigned int,unsigned short * const,unsigned short * const,unsigned short * const)" (?vcop_YCbCr444_Deinterleave444_short@@YAXQAGI000@Z) already defined in vcop_YcbCr444Deinterleave_c.obj; second definition ignored
    vcop_YcbCr422Deinterleave_c.obj : warning LNK4006: "void __cdecl vcop_YCbCr422_Deinterleave422_char(unsigned char * const,unsigned int,unsigned char * const,unsigned char * const,unsigned char * const)" (?vcop_YCbCr422_Deinterleave422_char@@YAXQAEI000@Z) already defined in vcop_YcbCr444Deinterleave_c.obj; second definition ignored
    vcop_YcbCr422Deinterleave_c.obj : warning LNK4006: "void __cdecl vcop_YCbCr422_Deinterleave422_short(unsigned short * const,unsigned int,unsigned short * const,unsigned short * const,unsigned short * const)" (?vcop_YCbCr422_Deinterleave422_short@@YAXQAGI000@Z) already defined in vcop_YcbCr444Deinterleave_c.obj; second definition ignored
    vcop_YcbCr422Deinterleave_c.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    vcop_mat_mul_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    vcop_HorzUpsample_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in EVEGenFilterCoeffs.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    vcop_dct8x8row_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    vcop_dct8x8row_cn.obj : warning LNK4006: "void __cdecl vcop_dct8x8row_cn(short *,short *,short *,int,int,int,int,int,int,int,int,int,int)" (?vcop_dct8x8row_cn@@YAXPAF00HHHHHHHHHH@Z) already defined in vcop_dct8x8row_cn.obj; second definition ignored
    vcop_dct8x8row_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    vcop_dct8x8row_cn.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    vcop_dct8x8col_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    vcop_dct8x8col_cn.obj : warning LNK4006: "void __cdecl vcop_dct8x8col_cn(short *,short *,short *,int,int,int,int,int,int,int,int,int,int)" (?vcop_dct8x8col_cn@@YAXPAF00HHHHHHHHHH@Z) already defined in vcop_dct8x8col_cn.obj; second definition ignored
    vcop_dct8x8col_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    vcop_dct8x8col_cn.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    vcop_rgb_to_yuv_c.obj : warning LNK4006: "unsigned char __cdecl CLIP(int)" (?CLIP@@YAEH@Z) already defined in vcop_rgb_to_yuv.obj; second definition ignored
    vcop_BayerCFA_HorzUpsample_cn.obj : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in vcop_filterPoly_cn.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in EVEGenFilterCoeffs.obj; second definition ignored
    EVEGenFilterCoeffs.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    del ar_cmd.txt
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    .
    ======== MERGE =================
    gmake -f makefile_mergelib
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    LIB /nologo /MACHINE:X86 /OUT:lib\debug\libevekernels.eve.lib_pc.lib lib\debug\libevekernels.eve.lib_pc.lib lib\debug\libeveprivkernels.eve.lib_pc.lib
    libevekernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in libevekernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in libevekernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(merge_sort_init.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(merge_sort_kernel_hard.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_alpha_blend_yuv420nv12_kernel.obj) : warning LNK4006: "void __cdecl vcop_alpha_blend_yuv420nv12(class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_alpha_blend_yuv420nv12@@YAXV?$VPTR@E@vcop@@000GGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_alpha_blend_yuv420nv12_host.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_alpha_blend_yuv420nv12_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_alpha_blend_yuv422i_kernel.obj) : warning LNK4006: "void __cdecl vcop_alpha_blend_yuv422i(class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_alpha_blend_yuv422i@@YAXV?$VPTR@E@vcop@@000GGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_alpha_blend_yuv422i_host.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_alpha_blend_yuv422i_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_block_statistics_kernel.obj) : warning LNK4006: "void __cdecl vcop_block_statistics(class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned int>,class vcop::VPTR<unsigned int>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned int>)" (?vcop_block_statistics@@YAXV?$VPTR@E@vcop@@GGGGG0V?$VPTR@G@2@V?$VPTR@I@2@2110012@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_block_statistics_host.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_block_statistics_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_dilate_mask(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_dilate_mask@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_erode_mask(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_erode_mask@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_dilate_rect(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_dilate_rect@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_erode_rect(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_erode_rect@@YAXGGGV?$VPTR@E@vcop@@GG00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_dilate_cross(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_dilate_cross@@YAXGGGV?$VPTR@E@vcop@@GGGG00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_erode_cross(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,unsigned short,unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_erode_cross@@YAXGGGV?$VPTR@E@vcop@@GGGG00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4006: "void __cdecl vcop_grayscale_morp_diff(unsigned short,unsigned short,unsigned short,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>)" (?vcop_grayscale_morp_diff@@YAXGGGV?$VPTR@E@vcop@@00@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_grayscale_morphology_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_4@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_5(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_5@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@1100V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@1100V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@1100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_1024_16ix16o_stage_5_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_1024_16ix16o_stage_5_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_1024_16ix16o_kernel_overflow.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_radix2_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_radix2_stage_4@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_128_16ix16o_radix2_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_128_16ix16o_radix2_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_128_16ix16o_kernel_overflow.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_4@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_256_16ix16o_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_256_16ix16o_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_256_16ix16o_kernel_overflow.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_4(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_4@@YAXV?$VPTR@F@vcop@@00GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_radix2_stage_5(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_radix2_stage_5@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_stage_4_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_stage_4_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_512_16ix16o_radix2_stage_5_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_512_16ix16o_radix2_stage_5_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_512_16ix16o_kernel_overflow.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_1(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_1@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_2(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_2@@YAXV?$VPTR@F@vcop@@00V?$VPTR@G@2@GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel.obj) : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_3(class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_3@@YAXV?$VPTR@F@vcop@@0GGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_1_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,unsigned char,unsigned short,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_1_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@EGGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_2_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned short>,class vcop::VPTR<unsigned char>,class vcop::VPTR<short>,unsigned char,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_2_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@100V?$VPTR@G@2@V?$VPTR@E@2@0EGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel_overflow.obj) : warning LNK4006: "void __cdecl vcop_fft_64_16ix16o_stage_3_overflow(class vcop::VPTR<short>,class vcop::VPTR<int>,class vcop::VPTR<int>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,class vcop::VPTR<short>,unsigned char,unsigned short,unsigned short)" (?vcop_fft_64_16ix16o_stage_3_overflow@@YAXV?$VPTR@F@vcop@@V?$VPTR@H@2@10V?$VPTR@E@2@0EGG@Z) already defined in libevekernels.eve.lib_pc.lib(vcop_fft_npt_16ix16o_wrapper.obj); second definition ignored
    libevekernels.eve.lib_pc.lib(vcop_fft_64_16ix16o_kernel_overflow.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libeveprivkernels.eve.lib_pc.lib(vcop_median_filter_mxn_u8_kernel.obj) : warning LNK4006: "void __cdecl vcop_select_kth_smallest_from_hist(class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<short>,class vcop::VPTR<unsigned char>,unsigned short)" (?vcop_select_kth_smallest_from_hist@@YAXV?$VPTR@F@vcop@@00V?$VPTR@E@2@G@Z) already defined in libeveprivkernels.eve.lib_pc.lib(vcop_median_filter_mxn_u8_host.obj); second definition ignored
    libeveprivkernels.eve.lib_pc.lib(vcop_median_filter_mxn_u8_kernel.obj) : warning LNK4006: "void __cdecl vcop_update_block_histogram_8c(class vcop::VPTR<unsigned char>,class vcop::VPTR<unsigned char>,class vcop::VPTR<short>,class vcop::VPTR<char>,class vcop::VPTR<char>,class vcop::VPTR<short>,class vcop::VPTR<short>,unsigned int,unsigned int,unsigned int)" (?vcop_update_block_histogram_8c@@YAXV?$VPTR@E@vcop@@0V?$VPTR@F@2@V?$VPTR@D@2@211III@Z) already defined in libeveprivkernels.eve.lib_pc.lib(vcop_median_filter_mxn_u8_host.obj); second definition ignored
    libeveprivkernels.eve.lib_pc.lib(vcop_median_filter_mxn_u8_kernel.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    LIB /nologo /MACHINE:X86 /OUT:lib\debug\libevenatckernels.eve.lib_pc.lib lib\debug\libevenatckernels.eve.lib_pc.lib lib\debug\libeveprivnatckernels.eve.lib_pc.lib
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8col_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8col_cn.obj) : warning LNK4006: "void __cdecl vcop_dct8x8col_cn(short *,short *,short *,int,int,int,int,int,int,int,int,int,int)" (?vcop_dct8x8col_cn@@YAXPAF00HHHHHHHHHH@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_dct8x8col_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8col_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8col_cn.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8row_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8row_cn.obj) : warning LNK4006: "void __cdecl vcop_dct8x8row_cn(short *,short *,short *,int,int,int,int,int,int,int,int,int,int)" (?vcop_dct8x8row_cn@@YAXPAF00HHHHHHHHHH@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_dct8x8row_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8row_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_dct8x8row_cn.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevenatckernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in libevenatckernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevenatckernels.eve.lib_pc.lib(vcop_HorzUpsample_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_mat_mul_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4006: "short __cdecl GenResamplingCoeffs(int,int,int,short *,unsigned char *,int *)" (?GenResamplingCoeffs@@YAFHHHPAFPAEPAH@Z) already defined in libevenatckernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(EVEGenFilterCoeffs.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevenatckernels.eve.lib_pc.lib(vcop_filterPoly_cn.obj) : warning LNK4006: "void __cdecl get_saturation_params(int,int,int *,int *,int *,int *,int *,int *)" (?get_saturation_params@@YAXHHPAH00000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_BayerCFA_HorzUpsample_cn.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_YcbCr444Deinterleave_c.obj) : warning LNK4006: "void __cdecl vcop_YCbCr444_Deinterleave444_char(unsigned char * const,unsigned int,unsigned char * const,unsigned char * const,unsigned char * const)" (?vcop_YCbCr444_Deinterleave444_char@@YAXQAEI000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_YcbCr422Deinterleave_c.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_YcbCr444Deinterleave_c.obj) : warning LNK4006: "void __cdecl vcop_YCbCr444_Deinterleave444_short(unsigned short * const,unsigned int,unsigned short * const,unsigned short * const,unsigned short * const)" (?vcop_YCbCr444_Deinterleave444_short@@YAXQAGI000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_YcbCr422Deinterleave_c.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_YcbCr444Deinterleave_c.obj) : warning LNK4006: "void __cdecl vcop_YCbCr422_Deinterleave422_char(unsigned char * const,unsigned int,unsigned char * const,unsigned char * const,unsigned char * const)" (?vcop_YCbCr422_Deinterleave422_char@@YAXQAEI000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_YcbCr422Deinterleave_c.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_YcbCr444Deinterleave_c.obj) : warning LNK4006: "void __cdecl vcop_YCbCr422_Deinterleave422_short(unsigned short * const,unsigned int,unsigned short * const,unsigned short * const,unsigned short * const)" (?vcop_YCbCr422_Deinterleave422_short@@YAXQAGI000@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_YcbCr422Deinterleave_c.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_YcbCr444Deinterleave_c.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevenatckernels.eve.lib_pc.lib(vcop_fft_N_16x16t_c.obj) : warning LNK4006: "void __cdecl vcop_fft16x16t_cn(short const *,int,short *,short *)" (?vcop_fft16x16t_cn@@YAXPBFHPAF1@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_fft_64_16x16t_c.obj); second definition ignored
    libevenatckernels.eve.lib_pc.lib(vcop_fft_N_16x16t_c.obj) : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    libevenatckernels.eve.lib_pc.lib(vcop_rgb_to_yuv.obj) : warning LNK4006: "unsigned char __cdecl CLIP(int)" (?CLIP@@YAEH@Z) already defined in libevenatckernels.eve.lib_pc.lib(vcop_rgb_to_yuv_c.obj); second definition ignored
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/kernels'
    ======== APPS =================
    gmake -C ./apps -f makefile
    gmake[1]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps'
    ======== MORPHOLOGY =================
    gmake -C ./morphology -f makefile
    gmake[2]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology'
    .
    ======== Morphology ALGO =================
    gmake -C ./algo -f makefile
    gmake[3]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/algo'
    echo Linking .\lib\debug\libeveMorphology.eve.lib
    Linking .\lib\debug\libeveMorphology.eve.lib
    echo /nologo /MACHINE:X86 /OUT:.\lib\debug\libeveMorphology.eve.lib_pc.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\algo\.\src\binary_morphology.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\algo\.\src\grayscale_morphology.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\algo\.\src\grayscale_morphology_host.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\algo\.\src\morphology_alg.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\algo\.\src\morphology_dma_auto_incr.obj ) DO echo %%i >> ar_cmd.txt
    LIB @ar_cmd.txt
    del ar_cmd.txt
    gmake[3]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/algo'
    .
    ======== Morphology TEST =================
    gmake -C ./test -f makefile
    gmake[3]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/test'
    if exist .\elf_out\test_eveMorphology.eve.out.exe del .\elf_out\test_eveMorphology.eve.out.exe
    LINK C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00/starterware/libs/PC/debug/libevestarterware_eve.lib_pc.lib C:/VISION_SDK_02_12_00_00/ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils/libs/PC/eve/debug/dmautils.lib "C:/VISION_SDK_02_12_00_00/ti_components\algorithms_codecs\REL.ALGFRAMEWORK.02.08.00.00\algframework/lib/PC/eve/debug/algframework.lib" C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00/kernels/lib/debug/libevekernels.eve.lib_pc.lib C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00/kernels/lib/debug/libevenatckernels.eve.lib_pc.lib ""../../../apps"/morphology/algo/lib/debug/libeveMorphology.eve.lib_pc.lib" /DEBUG /nologo /MACHINE:X86 /OUT:.\elf_out\test_eveMorphology.eve.out.exe C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\configparser.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\curve_fitting.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\eve_profile.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\ti_draw_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\ti_file_io.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\ti_image_file_io.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\ti_mem_manager.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\..\..\..\common\ti_stats_collector.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\.\src\morphology_tb.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\.\src\report_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00\out\PC\debug\apps\morphology\test\.\src\morphology_config.obj
    libeveMorphology.eve.lib_pc.lib(morphology_alg.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_memcpy2D(void *,void const *,unsigned short,unsigned short,short,short)" (?EDMA_UTILS_memcpy2D@@YAHPAXPBXGGFF@Z) referenced in function "void __cdecl MORPHOLOGY_TI_activate(struct IALG_Obj *)" (?MORPHOLOGY_TI_activate@@YAXPAUIALG_Obj@@@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_init(void *,struct EDMA_UTILS_autoIncrement_initParam const *)" (?EDMA_UTILS_autoIncrement_init@@YAHPAXPBUEDMA_UTILS_autoIncrement_initParam@@@Z) referenced in function "int __cdecl morphology_DMAAutoIncrInit(unsigned char *,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned int,unsigned int)" (?morphology_DMAAutoIncrInit@@YAHPAE0IIH0IIH0IIH0IIHII@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_configure(void *,unsigned int)" (?EDMA_UTILS_autoIncrement_configure@@YAHPAXI@Z) referenced in function "int __cdecl morphology_DMAAutoIncrInit(unsigned char *,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned int,unsigned int)" (?morphology_DMAAutoIncrInit@@YAHPAE0IIH0IIH0IIH0IIHII@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_triggerInChannel(void *)" (?EDMA_UTILS_autoIncrement_triggerInChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_triggerOutChannel(void *)" (?EDMA_UTILS_autoIncrement_triggerOutChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_waitInChannel(void *)" (?EDMA_UTILS_autoIncrement_waitInChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_waitOutChannel(void *)" (?EDMA_UTILS_autoIncrement_waitOutChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "void __cdecl EDMA_UTILS_globalReset(void)" (?EDMA_UTILS_globalReset@@YAXXZ) referenced in function "int __cdecl morphology_DMAAutoIncrInit(unsigned char *,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned int,unsigned int)" (?morphology_DMAAutoIncrInit@@YAHPAE0IIH0IIH0IIH0IIHII@Z)
    .\elf_out\test_eveMorphology.eve.out.exe : fatal error LNK1120: 8 unresolved externals
    gmake[3]: *** [outfile] Error 1120
    gmake[3]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/test'
    gmake[2]: *** [all] Error 2
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology'
    gmake[1]: *** [all] Error 2
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps'
    gmake: *** [all] Error 2

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00>


    Please let me know how can I solve this issue.

    Thanks and Regards,
    Ganesh
  • Hi Ganesh,
    Can you share the rules.mk file for both dmautils and algframework? Its located inside makerules folder.

    Regards,
    Anshu
  • Hi Anshu,

    I am attaching both the rule.mk file.

    Thanks and Regards,

    Ganesh

    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation -> visual studio
      #CC = CL
      #CP = CL
      #AS = $(TARGET_CPU)ASM
      #AR = LIB
      #LD = LINK
      #ifeq ($(TARGET_BUILD), release)
      #  COMPILER_FLAGS += /EHsc /TP /W0  /DHOST_EMULATION /c /nologo /Ox /MD /Gm /Zi /D_HOST_BUILD  /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
      #  LDDEBUG := /DEBUG 
      #else
      #  COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /MDd /Gm /Zi /RTC1 /D_HOST_BUILD 
      #  LDDEBUG := /DEBUG 
      #endif
      #ARFLAGS := /nologo /MACHINE:X86
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_C6XX -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_C6XX
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)echo Linking $(OUTFILE)
    #$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    #$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    #$(Q)$(AR) @ar_cmd.txt
    #$(Q)-del ar_cmd.txt
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    
    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
      CC = CL
      CP = CL
      AS = $(TARGET_CPU)ASM
      AR = LIB
      LD = LINK
      ifeq ($(TARGET_BUILD), release)
        COMPILER_FLAGS += /EHsc /TP /W0  /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MT /Gm /Zi /D_HOST_BUILD  /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
        LDDEBUG := /DEBUG 
    
      else
        COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MTd /Gm /Zi /RTC1 /D_HOST_BUILD 
        LDDEBUG := /DEBUG 
      endif
      ARFLAGS := /nologo /MACHINE:X86 
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_DSP -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_DSP
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo Linking $(OUTFILE)
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    

  • Hi Ganesh,

    Sorry for late reply. I've forwarded your EVE build query to another expert, he will be helping you on that issue.

    As for implementing the additional buffer in VisionSDK, you will have to allocate a buffer from ARM and supply to C66x DSP.

    In the objectDetectionLink_algPlugin file, you will have to assign the inBufs pointers just like how its done in object_detection_tb.c but memory allocation cannot happen there. This is because ARM should allocate a buffer, read a .bin file and pass the buffer to DSP after doing a cache write-back. This needs to happen only once per run.

    For reading the .bin file you can use regular fread() open the file in "rb" mode.

    I will also check with VisionSDK expert if he can provide some pointers on the specifics.

    Regards,

    Shyam

     

    Hi Shyam,

    Any update on this issue? How to proceed with it?

    I tried to solve this in following way:

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    In chains_vipSingleCameraObjectDetect2Tda3xx_setObjectDetectPrm() I called my own function to read a .bin file from sdcard (successfully reading it) and added an extra variable in structure "AlgorithmLink_ObjectDetectionCreateParams" to hold the pointer to the external weights(pOD_Prm->pExtAdaboostWeignts_PD).

    Here MAX_ADABOOST_WEIGHT_SIZE_PD = (40*1024),  and  I allocate the buffer to hold the external weights from  .bin file and pass it to Utils_fileReadFile()  as shown in the following code

    Void ChainsCommon_od_adaboost_externalWeights_ReadExtWeightsFromFile(AlgorithmLink_ObjectDetectionCreateParams *pOD_Prm, char *extWeightsPDfileName)
    {
    Int32 status;
    UInt32 dataSize = 0;

    pOD_Prm->pExtAdaboostWeignts_PD = Utils_memAlloc(UTILS_HEAPID_DDR_CACHED_SR, MAX_ADABOOST_WEIGHT_SIZE_PD, 128);
    UTILS_assert(pOD_Prm->pExtAdaboostWeignts_PD!=NULL);

    status = Utils_fileReadFile(extWeightsPDfileName, pOD_Prm->pExtAdaboostWeignts_PD, MAX_ADABOOST_WEIGHT_SIZE_PD, &dataSize);

    UTILS_assert(status==SYSTEM_LINK_STATUS_SOK);

    }

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

     

    In the file objectDetetionLink_algPluging.c, in AlgorithmLink_objectDetectionInitIOBuffers() I assign the above pOD_Prm->pExtAdaboostWeignts_PD to pInbufs variable as shown in the following code:

    if(pObj->inArgs.pdConfig.useExtWeightsPD == 1)

    {
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->numPlanes = 1;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].frameROI.topLeft.x = 0;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].frameROI.topLeft.y = 0;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].width = MAX_ADABOOST_WEIGHT_SIZE_PD;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].height = 1;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].frameROI.width = pInBufs->bufDesc[TI_OD_IN_BUFDESC_FEATURE_PLANES]->bufPlanes[0].width;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].frameROI.height = pInBufs->bufDesc[TI_OD_IN_BUFDESC_FEATURE_PLANES]->bufPlanes[0].frameROI.height;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].planeType = 0;
    pInBufs->bufDesc[TI_OD_IN_BUFDESC_PD_ADABOOST_WEIGHTS]->bufPlanes[0].buf = (void *)pObj->algLinkCreateParams.pExtAdaboostWeignts_PD;
    }

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    In order to use the above array,....... In the structure "AlgorithmLink_ObjectDetectionObj"  I had to change the variable size of the variable 

    IVISION_BufDesc  inBufDesc;           to

    IVISION_BufDesc  inBufDesc[TI_OD_IN_BUFDESC_TOTAL];                                                           where TI_OD_IN_BUFDESC_TOTAL=5

     

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Now I compiled the vision SDK successfully, but when I put the AppImage on SDcard and run it on TDA3x EVM I am getting the following error!


     

    Could you please help me solve this issue?

     

    Thanks and Regards,

    Ganesh

  • Ganesh,
    Can you make the following change in rules.mk and try clean building all the modules.

    rules.mk
    line 155 :
    ifeq ($(TARGET_BUILD), release)
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MT /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
    LDDEBUG := /DEBUG

    else
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MTd /Gm /Zi /RTC1 /D_HOST_BUILD
    LDDEBUG := /DEBUG
    endif


    Replace this with :
    ifeq ($(TARGET_BUILD), release)
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
    LDDEBUG := /DEBUG

    else
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD
    LDDEBUG := /DEBUG
    endif


    Regards,
    Anshu
  • Hi Anshu,

    it is still not working.

    I modified both rules.mk files as suggested by you:

    tried clean bulding all the modules:

    Once I got the following error :

    Just for your information.... I dont know whether its useful or not, I am using the following configuration for my PC:

    In rule.mk file for Algframework on line 163, there is ---> ARFLAGS := /nologo /MACHINE:X86 

    the same line is commented in the rule.mk for DMAUTILS on line 163 .... Does this have something to do with the error?! 

    I am sending the current rules.mk files again. Please let me know how to go further.

    Thanks and Regards,

    Ganesh

    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation -> visual studio
      #CC = CL
      #CP = CL
      #AS = $(TARGET_CPU)ASM
      #AR = LIB
      #LD = LINK
    ifeq ($(TARGET_BUILD), release)
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
    LDDEBUG := /DEBUG 
    
    else
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD 
    LDDEBUG := /DEBUG 
    endif
      #ARFLAGS := /nologo /MACHINE:X86
      
      
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_C6XX -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_C6XX
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)echo Linking $(OUTFILE)
    #$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    #$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    #$(Q)$(AR) @ar_cmd.txt
    #$(Q)-del ar_cmd.txt
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    
    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
      CC = CL
      CP = CL
      AS = $(TARGET_CPU)ASM
      AR = LIB
      LD = LINK
    ifeq ($(TARGET_BUILD), release)
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
    LDDEBUG := /DEBUG 
    
    else
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD 
    LDDEBUG := /DEBUG 
    endif
      ARFLAGS := /nologo /MACHINE:X86 
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_DSP -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_DSP
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo Linking $(OUTFILE)
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    
     

  • Ganesh,
        Can you confirm that you are using visual studio compiler for building host emulation? I see that rules.mk for dmautils is using gcc as compiler.

    Regards,

    Anshu

  • Hi Anshu,

    DMAUtilsLibrary_UserGuide.pdf does not mention anything about using visual studio compiler for building host emulation. I tried using visual studio compiler also as you suggest.

    I did steps to set the compiler as we do for compiling eve code. I changed the rules.mk file for DMAUtils as suggested by you and now I am getting the error shown in following log when I try to compile DMAUTils with TARGET_PLATFORM=PC :

    Microsoft Windows [Version 10.0.17134.471]
    (c) 2018 Microsoft Corporation. Alle Rechte vorbehalten.

    C:\WINDOWS\system32>cd C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>gmake
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\rm -rf .\libs\dsp\release\dmautils.lib
    echo r .\libs\dsp\release\dmautils.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\dma_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\dma_resource_allocator.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma3lld_support.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\dsp\release\dmautils\drivers\src\edma_utils\edma_utils_state.obj ) DO echo %%i >> ar_cmd.txt
    C:\VISION_SDK_02_12_00_00\ti_components\cg_tools\windows\C6000_7.4.2\bin\ar6x @ar_cmd.txt
    ==> new archive '.\libs\dsp\release\dmautils.lib'
    ==> building archive '.\libs\dsp\release\dmautils.lib'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\rm -rf ar_cmd.txt

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=eve
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\rm -rf .\libs\eve\release\dmautils.lib
    echo r .\libs\eve\release\dmautils.lib > ar_cmd.txt
    FOR %%i IN (C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\dma_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\dma_resource_allocator.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma3lld_support.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\vayu\eve\release\dmautils\drivers\src\edma_utils\edma_utils_state.obj ) DO echo %%i >> ar_cmd.txt
    C:\VISION_SDK_02_12_00_00\ti_components\cg_tools\windows\arp32_1.0.7\bin\ar-arp32 @ar_cmd.txt
    ==> new archive '.\libs\eve\release\dmautils.lib'
    ==> building archive '.\libs\eve\release\dmautils.lib'
    C:/VISION_SDK_02_12_00_00/ti_components\os_tools\windows\xdctools_3_32_00_06_core\bin\rm -rf ar_cmd.txt

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>cd C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC

    C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC>vcvarsall.bat

    C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC>cd C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=eve TARGET_PLATFORM=PC
    ar rvs -o .\libs\PC\eve\debug\dmautils.lib C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_resource_allocator.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma3lld_support.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_state.obj
    process_begin: CreateProcess(NULL, ar rvs -o .\libs\PC\eve\debug\dmautils.lib C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_resource_allocator.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma3lld_support.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_state.obj, ...) failed.
    make (e=2): Das System kann die angegebene Datei nicht finden.
    gmake: *** [libfile] Error 2

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>

    The error says that : The system cannot find the specified file.

    Is it right what I am doing or is there any other way to set the compiler to visual studio compiler? Do I need to change something more in rules.mk?

    I am using the following 'vcvarsall.bat' before compiling the code for PC.

    Thanks and Regards,

    Ganesh

  • Hi Anshu,

    I tried modifying the rules.mk file for DMAUtils. After which it compiled with some warnings.

    From line 147 to line 172:  Previously it was :

    ifeq ($(TARGET_PLATFORM) , PC)

    ifdef SystemRoot

     #Window Host Emulation -> visual studio

     #CC = CL

     #CP = CL

     #AS = $(TARGET_CPU)ASM

     #AR = LIB

     #LD = LINK

     #ifeq ($(TARGET_BUILD), release)

     #  COMPILER_FLAGS += /EHsc /TP /W0  /DHOST_EMULATION /c /nologo /Ox /MD /Gm /Zi /D_HOST_BUILD  /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0

     #  LDDEBUG := /DEBUG

     #else

     #  COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /MDd /Gm /Zi /RTC1 /D_HOST_BUILD

     #  LDDEBUG := /DEBUG

     #endif

     #ARFLAGS := /nologo /MACHINE:X86

     CC=gcc -c

     AR=ar

     ARFLAGS := rvs

     ifeq ($(TARGET_BUILD), debug)

       COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32

     else

       COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32

     endif

     LD=g++

     LDFLAGS +=

    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Yesterday, you had told me to replace

    line 155 :

    ifeq ($(TARGET_BUILD), release)

    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MT /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0

    LDDEBUG := /DEBUG

    else

    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MTd /Gm /Zi /RTC1 /D_HOST_BUILD

    LDDEBUG := /DEBUG

    endif

    Replace this with :

    ifeq ($(TARGET_BUILD), release)

    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0

    LDDEBUG := /DEBUG

    else

    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD

    LDDEBUG := /DEBUG

    endif

    ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    After doing this I was still facing the error and as suggested by you I tried to use Visual Studio compiler but it did not work. Finally I modified the rules.mk again :

    I replaced lines 147 to 172 with the following script, 

    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    #Window Host Emulation -> visual studio
    CC = CL
    CP = CL
    AS = $(TARGET_CPU)ASM
    AR = LIB
    LD = LINK
    ifeq ($(TARGET_BUILD), release)
    += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
    LDDEBUG := /DEBUG

    else
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD
    LDDEBUG := /DEBUG
    endif
    ARFLAGS := /nologo /MACHINE:X86


    #CC=gcc -c
    #AR=ar
    #ARFLAGS := rvs
    #ifeq ($(TARGET_BUILD), debug)
    # COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
    #else
    # COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
    #endif
    #LD=g++
    # LDFLAGS +=

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Following is the log for the same:

     

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=eve TARGET_PLATFORM=PC
    LIB /nologo /MACHINE:X86 -o .\libs\PC\eve\debug\dmautils.lib C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_resource_allocator.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma3lld_support.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_state.obj
    LINK : warning LNK4044: unrecognized option '/o'; ignored
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_funcs.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_resource_allocator.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma3lld_support.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj
    Replacing C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_state.obj
    edma_utils_state.obj : warning LNK4006: _DMA_utils_resetStateStruct already defined in dmautils.lib(edma_utils_state.obj); second definition ignored
    edma_utils_state.obj : warning LNK4006: _DMA_utils_updateStateStruct already defined in dmautils.lib(edma_utils_state.obj); second definition ignored
    edma_utils_state.obj : warning LNK4006: _DMA_utils_freeStateStruct already defined in dmautils.lib(edma_utils_state.obj); second definition ignored
    edma_utils_state.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_getContextSize already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_init already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_configure already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_updateNtrigger already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_updateSrcNtrigger already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_updateDstNtrigger already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_wait already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_isDone already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4006: _EDMA_UTILS_scattherGather_deinit already defined in dmautils.lib(edma_utils_scatterGather.obj); second definition ignored
    edma_utils_scatterGather.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma_utils_memcpy.obj : warning LNK4006: _EDMA_UTILS_memcpy2D already defined in dmautils.lib(edma_utils_memcpy.obj); second definition ignored
    edma_utils_memcpy.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_getContextSize already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_init already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_configure already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_update already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_triggerInChannel already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_triggerOutChannel already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_waitInChannel already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_waitOutChannel already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_deconfigure already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4006: _EDMA_UTILS_autoIncrement1D_isDone already defined in dmautils.lib(edma_utils_autoincrement_1d.obj); second definition ignored
    edma_utils_autoincrement_1d.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_getContextSize_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_init_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_configure_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_update_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_triggerInChannel_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_triggerOutChannel_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_waitInChannel_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_waitOutChannel_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_deconfigure_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_isDone_v2 already defined in dmautils.lib(edma_utils_autoincrement_v2.obj); second definition ignored
    edma_utils_autoincrement_v2.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_getContextSize already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_init already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_configure already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_update already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_triggerInChannel already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_triggerOutChannel already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_waitInChannel already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_waitOutChannel already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_deconfigure already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4006: _EDMA_UTILS_autoIncrement_isDone already defined in dmautils.lib(edma_utils_autoincrement.obj); second definition ignored
    edma_utils_autoincrement.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma_utils.obj : warning LNK4006: _EDMA_UTILS_setEdma3RmHandle already defined in dmautils.lib(edma_utils.obj); second definition ignored
    edma_utils.obj : warning LNK4006: _EDMA_UTILS_globalReset already defined in dmautils.lib(edma_utils.obj); second definition ignored
    edma_utils.obj : warning LNK4006: _edmaBase already defined in dmautils.lib(edma_utils.obj); second definition ignored
    edma_utils.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    edma3lld_support.obj : warning LNK4006: _EDMA3LLD_SUPPORT_requestResources already defined in dmautils.lib(edma3lld_support.obj); second definition ignored
    edma3lld_support.obj : warning LNK4006: _EDMA3LLD_SUPPORT_releaseResources already defined in dmautils.lib(edma3lld_support.obj); second definition ignored
    edma3lld_support.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    dma_resource_allocator.obj : warning LNK4006: _DMA_resourceAllocator_setEdma3RmHandle already defined in dmautils.lib(dma_resource_allocator.obj); second definition ignored
    dma_resource_allocator.obj : warning LNK4006: _DMA_resourceAllocator_initResources already defined in dmautils.lib(dma_resource_allocator.obj); second definition ignored
    dma_resource_allocator.obj : warning LNK4006: _DMA_resourceAllocator_allocateResources already defined in dmautils.lib(dma_resource_allocator.obj); second definition ignored
    dma_resource_allocator.obj : warning LNK4006: _DMA_resourceAllocator_deallocateResources already defined in dmautils.lib(dma_resource_allocator.obj); second definition ignored
    dma_resource_allocator.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
    dma_funcs.obj : warning LNK4006: _DMA_funcs_hardwareRegSetup already defined in dmautils.lib(dma_funcs.obj); second definition ignored
    dma_funcs.obj : warning LNK4006: _DMA_funcs_writeTransferParams already defined in dmautils.lib(dma_funcs.obj); second definition ignored
    dma_funcs.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Is this step right ?

    After doing this I compile the Algframwork folder in similar way for TARGET_PLATFORM=PC and it gives no error.

    And finally I tried building the Eve Source code for which I am getting the same linker error as before!!

    ======== Morphology ALGO =================
    gmake -C ./algo -f makefile
    gmake[3]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/algo'
    Linking .\lib\debug\libeveMorphology.eve.lib
    gmake[3]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/algo'
    .
    ======== Morphology TEST =================
    gmake -C ./test -f makefile
    gmake[3]: Entering directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/test'
    libeveMorphology.eve.lib_pc.lib(morphology_alg.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_memcpy2D(void *,void const *,unsigned short,unsigned short,short,short)" (?EDMA_UTILS_memcpy2D@@YAHPAXPBXGGFF@Z) referenced in function "void __cdecl MORPHOLOGY_TI_activate(struct IALG_Obj *)" (?MORPHOLOGY_TI_activate@@YAXPAUIALG_Obj@@@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_init(void *,struct EDMA_UTILS_autoIncrement_initParam const *)" (?EDMA_UTILS_autoIncrement_init@@YAHPAXPBUEDMA_UTILS_autoIncrement_initParam@@@Z) referenced in function "int __cdecl morphology_DMAAutoIncrInit(unsigned char *,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned int,unsigned int)" (?morphology_DMAAutoIncrInit@@YAHPAE0IIH0IIH0IIH0IIHII@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_configure(void *,unsigned int)" (?EDMA_UTILS_autoIncrement_configure@@YAHPAXI@Z) referenced in function "int __cdecl morphology_DMAAutoIncrInit(unsigned char *,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned int,unsigned int)" (?morphology_DMAAutoIncrInit@@YAHPAE0IIH0IIH0IIH0IIHII@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_triggerInChannel(void *)" (?EDMA_UTILS_autoIncrement_triggerInChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_triggerOutChannel(void *)" (?EDMA_UTILS_autoIncrement_triggerOutChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_waitInChannel(void *)" (?EDMA_UTILS_autoIncrement_waitInChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "int __cdecl EDMA_UTILS_autoIncrement_waitOutChannel(void *)" (?EDMA_UTILS_autoIncrement_waitOutChannel@@YAHPAX@Z) referenced in function "void __cdecl morphology_DMAAutoIncrExec(unsigned char *,void (__cdecl** const)(unsigned short *),unsigned short * * const,unsigned char)" (?morphology_DMAAutoIncrExec@@YAXPAEQAP6AXPAG@ZQAPAGE@Z)
    libeveMorphology.eve.lib_pc.lib(morphology_dma_auto_incr.obj) : error LNK2019: unresolved external symbol "void __cdecl EDMA_UTILS_globalReset(void)" (?EDMA_UTILS_globalReset@@YAXXZ) referenced in function "int __cdecl morphology_DMAAutoIncrInit(unsigned char *,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned char *,unsigned int,unsigned int,int,unsigned int,unsigned int)" (?morphology_DMAAutoIncrInit@@YAHPAE0IIH0IIH0IIH0IIHII@Z)
    .\elf_out\test_eveMorphology.eve.out.exe : fatal error LNK1120: 8 unresolved externals
    gmake[3]: *** [outfile] Error 1120
    gmake[3]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology/test'
    gmake[2]: *** [all] Error 2
    gmake[2]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps/morphology'
    gmake[1]: *** [all] Error 2
    gmake[1]: Leaving directory `C:/VISION_SDK_02_12_00_00/ti_components/algorithms_codecs/eve_sw_src_01_18_00_00/apps'
    gmake: *** [all] Error 2

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\eve_sw_src_01_18_00_00>

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Kindly guide me further.

    Thanks and Regards,

    Ganesh

     

  • Hi Anshu,

    In addition to the above changes, I added one more change in rules.mk for DMAUtils.

    It seems the command -o does work for Visual studio compiler, so I used /OUT: instead and now I can compile the DMAUTILS without any warning!

    I modified line 528 of rules.mk:

    $(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)

    replaced by

    $(Q)$(AR) $(ARFLAGS) /OUT:$(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)

    Now I get the following log when I compile the DMAUTILS:

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>gmake CORE=eve TARGET_PLATFORM=PC
    LIB /nologo /MACHINE:X86 /OUT:.\libs\PC\eve\debug\dmautils.lib C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_funcs.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\dma_resource_allocator.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma3lld_support.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_v2.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_autoincrement_1d.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_memcpy.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_scatterGather.obj C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\out\PC\eve\debug\dmautils\drivers\src\edma_utils\edma_utils_state.obj

    C:\VISION_SDK_02_12_00_00\ti_components\algorithms_codecs\REL.DMAUTILS.00.08.00.02\dmautils>

    I hope this is the correct way to build DMAUTILS. If not kindly let me know.

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Now I rebuild the Algframework using visual studio compiler as we do in eve code compilation and I compiled it without any error.

    But when I try to build the eve source now with the method mentioned in userguide, I face the same linker error as before!! 

    How can I go further?

    Thanks and Regards,

    Ganesh

     

  • Ganesh,

       We only support host emulation build of EVE SW  using visual studio compiler, and its mentioned in eve_sw_getting_started.pdf document.  I request you to use visual studio compiler for host emulation build of EVE SW as we don't support it on Linux.


    Regards,

    Anshu

  • Hi Anshu,

    I am using visual studio compiler as mentioned in the eve_sw_getting_started.pdf as mentioned before on windows PC and not linux!

    Thanks and Regards,

    Ganesh

  • Ganesh,
    In one of the previous reply you mentioned the following changes "
    ifeq ($(TARGET_PLATFORM) , PC)

    ifdef SystemRoot

    #Window Host Emulation -> visual studio

    #CC = CL

    #CP = CL

    #AS = $(TARGET_CPU)ASM

    #AR = LIB

    #LD = LINK

    #ifeq ($(TARGET_BUILD), release)


    This change comments using visual studio compiler and thats why I had the doubt regarding the same.

    Regards,
    Anshu
  • Hi Anshu,

    Should I comment them or uncomment them?

    I replaced lines 147 to 172 with the following script,

    ifeq ($(TARGET_PLATFORM) , PC)

    ifdef SystemRoot

    #Window Host Emulation -> visual studio

    CC = CL

    CP = CL

    AS = $(TARGET_CPU)ASM

    AR = LIB

    LD = LINK

    ifeq ($(TARGET_BUILD), release)

    += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0

    LDDEBUG := /DEBUG

    else

    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD

    LDDEBUG := /DEBUG

    endif

    ARFLAGS := /nologo /MACHINE:X86

    #CC=gcc -c

    #AR=ar

    #ARFLAGS := rvs

    #ifeq ($(TARGET_BUILD), debug)

    # COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32

    #else

    # COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32

    #endif

    #LD=g++

    # LDFLAGS +=

    Here if you see on the top.... I have uncommented it so as to use Visual Studio Compiler....... and commented the previous statements(highlighted in blue) below where CC was assigned gcc -c.

    ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    I am sending you the original rules.mk for DMAUTILS and one that I modified.  Maybe you could tell me what changes are wrong or better you send me the modified rule.mk from your side if possible.

    Thanks and Regards,

    Ganesh

    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation -> visual studio
      CC = CL
      CP = CL
      AS = $(TARGET_CPU)ASM
      AR = LIB
      LD = LINK
    ifeq ($(TARGET_BUILD), release)
     += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Ox /D_NDEBUG /MD /Gm /Zi /D_HOST_BUILD /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
    LDDEBUG := /DEBUG 
    
    else
    COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /D_DEBUG /MDd /Gm /Zi /RTC1 /D_HOST_BUILD 
    LDDEBUG := /DEBUG 
    endif
    ARFLAGS := /nologo /MACHINE:X86
      
      
      #CC=gcc -c
      #AR=ar
      #ARFLAGS := rvs
      #ifeq ($(TARGET_BUILD), debug)
       # COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      #else
       # COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      #endif
      #LD=g++
     # LDFLAGS +=
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_C6XX -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_C6XX
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)echo Linking $(OUTFILE)
    #$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    #$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    #$(Q)$(AR) @ar_cmd.txt
    #$(Q)-del ar_cmd.txt
    #	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    	$(Q)$(AR) $(ARFLAGS) /OUT:$(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    

    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation -> visual studio
      #CC = CL
      #CP = CL
      #AS = $(TARGET_CPU)ASM
      #AR = LIB
      #LD = LINK
      #ifeq ($(TARGET_BUILD), release)
      #  COMPILER_FLAGS += /EHsc /TP /W0  /DHOST_EMULATION /c /nologo /Ox /MD /Gm /Zi /D_HOST_BUILD  /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
      #  LDDEBUG := /DEBUG 
      #else
      #  COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /MDd /Gm /Zi /RTC1 /D_HOST_BUILD 
      #  LDDEBUG := /DEBUG 
      #endif
      #ARFLAGS := /nologo /MACHINE:X86
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_C6XX -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_C6XX
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    #$(Q)echo Linking $(OUTFILE)
    #$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    #$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    #$(Q)$(AR) @ar_cmd.txt
    #$(Q)-del ar_cmd.txt
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    

  • Can you try building dmautils and algframework with the following rules.mk

    #
    # Copyright (c) {2015 - 2017} Texas Instruments Incorporated
    #
    # All rights reserved not granted herein.
    #
    # Limited License.
    #
    # Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
    # license under copyrights and patents it now or hereafter owns or controls to make,
    # have made, use, import, offer to sell and sell ("Utilize") this software subject to the
    # terms herein.  With respect to the foregoing patent license, such license is granted
    # solely to the extent that any such patent is necessary to Utilize the software alone.
    # The patent license shall not apply to any combinations which include this software,
    # other than combinations with devices manufactured by or for TI ("TI Devices").
    # No hardware patent is licensed hereunder.
    #
    # Redistributions must preserve existing copyright notices and reproduce this license
    # (including the above copyright notice and the disclaimer and (if applicable) source
    # code license limitations below) in the documentation and/or other materials provided
    # with the distribution
    #
    # Redistribution and use in binary form, without modification, are permitted provided
    # that the following conditions are met:
    #
    # *       No reverse engineering, decompilation, or disassembly of this software is
    # permitted with respect to any software provided in binary form.
    #
    # *       any redistribution and use are licensed by TI for use only with TI Devices.
    #
    # *       Nothing shall obligate TI to provide you with source code for the software
    # licensed and provided to you in object code.
    #
    # If software source code is provided to you, modification and redistribution of the
    # source code are permitted provided that the following conditions are met:
    #
    # *       any redistribution and use of the source code, including any resulting derivative
    # works, are licensed by TI for use only with TI Devices.
    #
    # *       any redistribution and use of any object code compiled from the source code
    # and any resulting derivative works, are licensed by TI for use only with TI Devices.
    #
    # Neither the name of Texas Instruments Incorporated nor the names of its suppliers
    #
    # may be used to endorse or promote products derived from this software without
    # specific prior written permission.
    #
    # DISCLAIMER.
    #
    # THIS SOFTWARE IS PROVIDED BY TI AND TI'S LICENSORS "AS IS" AND ANY EXPRESS
    # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
    # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
    # IN NO EVENT SHALL TI AND TI'S LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
    # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    # OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    #
    
    
    ##############################################################
    
    include $(ALGBASE_PATH)/makerules/config.mk
    
    XDAIS_PACKAGE_DIR := $(XDAIS_PATH)/packages
    BUILD_FOLDER      := $(ALGBASE_PATH)\out
    
    ifdef SystemRoot
    #Windows OS
        ifndef UTILS_PATH
          $(error You must define UTILS_PATH!)
        endif
        RM_CMD = $(UTILS_PATH)\rm -rf
        MKDIR_CMD = $(UTILS_PATH)\mkdir -p $(1)
        CHANGE_PATHSEP=$(subst /,\,$(1))
        CAT_CMD = $(UTILS_PATH)\cat
        MAKE = gmake
    else
        ifeq ($(shell uname), Linux)
    #Linux
          RM_CMD = rm -rf
          MKDIR_CMD = mkdir -p $(1)
          CHANGE_PATHSEP=$(subst \,/,$(1))
          CAT_CMD = cat
          MAKE = make
        endif
    endif
    
    ifeq ($(SHOW_COMMANDS),1)
    Q:=
    else
    Q:=@
    endif
    
    ALGBASE_PATH:= $(call  CHANGE_PATHSEP,$(ALGBASE_PATH))
    XDAIS_PACKAGE_DIR:= $(call  CHANGE_PATHSEP,$(XDAIS_PACKAGE_DIR))
    EMPTY:=
    SPACE:=$(EMPTY) $(EMPTY)
    COMMA:=$(EMPTY),$(EMPTY)
    
    _MAKEPATH := $(abspath .)
    _MAKEPATH:= $(call  CHANGE_PATHSEP,$(_MAKEPATH))
    
    
    ifdef SystemRoot
    _MODPATH  := $(subst $(ALGBASE_PATH)\,,$(_MAKEPATH))
    else
    _MODPATH  := $(subst $(ALGBASE_PATH)/,,$(_MAKEPATH))
    endif
    _MODPATH:= $(call CHANGE_PATHSEP,$(_MODPATH))
    
    
    
    BUILD_MODE ?=OBJ
    
    #if platform is vayu
    ifeq ($(TARGET_SOC),vayu)
        DEFINE_FLAGS := VAYU_PLATFORM
    endif
    
    #if platform is vme
    ifeq ($(TARGET_SOC),vme)
        DEFINE_FLAGS := VME_PLATFORM
    endif
    
    ifeq ($(TARGET_BUILD), )
    ifeq ($(TARGET_PLATFORM) , PC)
    	TARGET_BUILD := debug
    else
    	TARGET_BUILD := release
    endif
    endif
    
    ifeq ($(TARGET_PLATFORM) , PC)
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_PLATFORM)/$(CORE)/$(TARGET_BUILD)
    else
    CURR_BUILD_FOLDER:= $(BUILD_FOLDER)/$(TARGET_SOC)/$(CORE)/$(TARGET_BUILD)
    endif
    
    CURR_BUILD_FOLDER:= $(call  CHANGE_PATHSEP,$(CURR_BUILD_FOLDER))
    
    ##############################################################
    
    ##############################################################
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
      CC = CL
      CP = CL
      AS = $(TARGET_CPU)ASM
      AR = LIB
      LD = LINK
      ifeq ($(TARGET_BUILD), release)
        COMPILER_FLAGS += /EHsc /TP /W0  /DHOST_EMULATION /c /nologo /Ox /MD /Gm /Zi /D_HOST_BUILD  /D_HAS_ITERATOR_DEBUGGING=0 /D_ITERATOR_DEBUG_LEVEL=0
        LDDEBUG := /DEBUG 
      else
        COMPILER_FLAGS += /EHsc /TP /W0 /DHOST_EMULATION /c /nologo /Od /MDd /Gm /Zi /RTC1 /D_HOST_BUILD 
        LDDEBUG := /DEBUG 
      endif
      ARFLAGS := /nologo /MACHINE:X86
    else 
      #Linux Host Emulation
      CC=gcc -c
      AR=ar
      ARFLAGS := rvs
      ifeq ($(TARGET_BUILD), debug)
        COMPILER_FLAGS += -std=c99 -ggdb -ggdb3 -gdwarf-2 -DHOST_EMULATION -m32
      else
        COMPILER_FLAGS += -std=c99 -O3 -DHOST_EMULATION -m32
      endif
      LD=g++
      LDFLAGS +=
    endif
      ifeq ($(CORE),eve)
      COMPILER_FLAGS += -DCORE_EVE -DVCOP_HOST_EMULATION
      endif
      ifeq ($(CORE),dsp)
      COMPILER_FLAGS += -DCORE_DSP -D_TMS320C6600
    
       ifeq ($(TARGET_CPU),C64T)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C64P)
         COMPILER_FLAGS += -DTMS320C64PX
         else ifeq ($(TARGET_CPU),C64)
         COMPILER_FLAGS += -DTMS320C64X
         else ifeq ($(TARGET_CPU),C66)
         COMPILER_FLAGS += -DTMS320C66X
         else ifeq ($(TARGET_CPU),C674)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67)
         COMPILER_FLAGS += -DTMS320C67X
         else ifeq ($(TARGET_CPU),C67P)
         COMPILER_FLAGS += -DTMS320C67X
       endif
       COMPILER_FLAGS += -DLITTLE_ENDIAN_HOST
      endif 
    
    else
    #TI_DEVICE
      ifeq ($(CORE),eve)
        CC = $(ARP32_TOOLS)\bin\cl-arp32
        LD = $(ARP32_TOOLS)\bin\lnk-arp32
        AR = $(ARP32_TOOLS)\bin\ar-arp32
        ifeq ($(TARGET_BUILD), release)
          COMPILER_FLAGS += -kh -kv -lu -o3 --silicon_version=v210 -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        else
          COMPILER_FLAGS += -kh -kv -lu -g --silicon_version=v210  -D$(DEFINE_FLAGS) --gen_func_subsections --display_error_number --diag_suppress=496 --diag_suppress=1311
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x --display_error_number --diag_suppress=num=10063  --diag_suppress=num=10068
        CFLAGS += -I $(ARP32_TOOLS)/include
        CFLAGS += -DCORE_EVE
        ifneq ($(VCOP_H_DIR),)
          CFLAGS += --temp_directory=$(VCOP_H_DIR)
        endif
      endif
      ifeq ($(CORE),dsp)
        CC = $(DSP_TOOLS)\bin\cl6x
        LD = $(DSP_TOOLS)\bin\lnk6x
        AR = $(DSP_TOOLS)\bin\ar6x
        ifeq ($(TARGET_BUILD), release)
          CFLAGS = -O3 -ml3 -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        else
          CFLAGS = -ml3 -g -DUSE_LEVEL_1_MACROS -D$(DEFINE_FLAGS) --abi=eabi --rtti -mo
        endif
        CFLAGS += -DCORE_DSP
        
        ifeq ($(TARGET_CPU),C64T)
          CFLAGS += --silicon_version=tesla -D=xdc_target_name=C64T
          else ifeq ($(TARGET_CPU),C64P)
          CFLAGS += --silicon_version=6400+ -D=xdc_target_name=C64P
          else ifeq ($(TARGET_CPU),C64)
          CFLAGS += --silicon_version=6400 -D=xdc_target_name=C64
          else ifeq ($(TARGET_CPU),C66)
          CFLAGS += --silicon_version=6600 -D=xdc_target_name=C66
          else ifeq ($(TARGET_CPU),C674)
          CFLAGS += --silicon_version=6740 -D=xdc_target_name=C674
          else ifeq ($(TARGET_CPU),C67)
          CFLAGS += --silicon_version=6700 -D=xdc_target_name=C67
          else ifeq ($(TARGET_CPU),C67P)
          CFLAGS += --silicon_version=6700+ -D=xdc_target_name=C67P
        endif
        ARFLAGS = r
        LDFLAGS += -cr -x
        CFLAGS += -I $(DSP_TOOLS)/include
      endif
      ifeq ($(CORE),arm)
    	CFLAGS_GLOBAL_m4vpss = -g -ms -D___DSPBIOS___ -D___DUCATI_FW___ --obj_extension=obj
    	ENDIAN = little
    	FORMAT = ELF
        
    	CC = $(TIARM_TOOLS)\bin\armcl
    	LD = $(TIARM_TOOLS)\bin\armlnk
    	AR = $(TIARM_TOOLS)\bin\armar
    	CFLAGS_INTERNAL = -c -qq -pdsw225 --endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -eo.$(OBJEXT) -ea.$(ASMEXT) --symdebug:dwarf --embed_inline_assembly
        
        ifeq ($(FORMAT),COFF)
    		CSWITCH_FORMAT = ti_arm9_abi
    		RTSLIB_FORMAT = tiarm9
        endif
        ifeq ($(FORMAT),ELF)
    		CSWITCH_FORMAT = eabi
    		RTSLIB_FORMAT = eabi
        endif
    
        ifeq ($(TARGET_BUILD), release)
    		LNKFLAGS_INTERNAL_PROFILE = --opt='--endian=$(ENDIAN) -mv7M4 --float_support=vfplib --abi=$(CSWITCH_FORMAT) -qq -pdsw225 $(CFLAGS_GLOBAL_m4vpss) -oe --symdebug:dwarf -ms -op2 -O3 -os --optimize_with_debug --inline_recursion_limit=20 --diag_suppress=23000' --strict_compatibility=on
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_release -Dxdc_bld__vers_1_0_4_6_1 -ms -oe -O3 -op0 -os --optimize_with_debug --inline_recursion_limit=20
        else
    		LNKFLAGS_INTERNAL_PROFILE =
    		CFLAGS_XDCINTERNAL = -Dxdc_target_name__=M4 -Dxdc_target_types__=ti/targets/arm/elf/std.h -Dxdc_bld__profile_debug -Dxdc_bld__vers_1_0_4_6_1 -D_DEBUG_=1
     
        endif
    	
    	ARFLAGS = rq
    	CFLAGS = $(CFLAGS_INTERNAL) $(CFLAGS_GLOBAL_m4vpss) $(CFLAGS_XDCINTERNAL)
    	CFLAGS += -I $(TIARM_TOOLS)\include
      endif
    
      
      CFLAGS += --diag_suppress=496 --diag_suppress=1311
    endif
    
    ifeq ($(CORE),eve)
    CFLAGS += -I $(ARP32_TOOLS)/include/vcop
    endif
    ##############################################################
    
    
    ##############################################################
    ifeq ($(LIBDIR),)
    LIBDIR =  .\lib\$(TARGET_BUILD)
    endif
    ifeq ($(OUTDIR),)
    OUTDIR =  .\elf_out
    endif
    
    
    
    ifeq ($(ENABLE_FASTFILEIO),1)
    CFLAGS += -DUSE_HOST_FILE_IO
    endif
    
    ##############################################################
    
    # In case there are no sources, it is better to not generate any lib
    ifeq (,$(wildcard $(CFILES)))
    OUTFILE=
    endif
    ##############################################################
    CFILES := $(call  CHANGE_PATHSEP,$(CFILES))
    HFILES := $(call  CHANGE_PATHSEP,$(HFILES))
    
    CFILESK:= $(filter %.k,$(CFILES))
    CFILESC:= $(filter %.c,$(CFILES))
    CFILESCPP:= $(filter %.cpp,$(CFILES))
    CFILESCC:= $(filter %.cc,$(CFILES))
    CFILESASM:= $(filter %.asm,$(CFILES))
    CFILES:= $(CFILESK) $(CFILESC) $(CFILESASM) $(CFILESCPP) $(CFILESCC)
    
    #OFILES:= $(addsuffix .obj, $(basename $(notdir $(CFILES))))
    
    OFILES:= $(CFILESC:%.c=%.obj)
    OFILES+= $(CFILESCPP:%.cpp=%.obj)
    OFILES+= $(CFILESCC:%.cc=%.obj)
    ifneq ($(TARGET_PLATFORM) , PC)
    OFILES+= $(CFILESASM:%.asm=%.obj)
    endif
    DEPILES:= $(CFILESC:%.c=%.dep)
    DEPILES+= $(CFILESCPP:%.cpp=%.dep)
    DEPILES+= $(CFILESCC:%.cc=%.dep)
    KOFILES:= $(CFILESK:%.k=%.obj)
    
    BUILDDIR := $(CURR_BUILD_FOLDER)/$(_MODPATH)/
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    
    OFILES:= $(addprefix  $(BUILDDIR), $(OFILES))
    KOFILES:= $(addprefix $(BUILDDIR), $(KOFILES))
    DEPILES:= $(addprefix $(BUILDDIR), $(DEPILES))
    
    OFILES := $(call  CHANGE_PATHSEP,$(OFILES))
    FIRST_OFILES := $(word 1,$(OFILES))
    RESTOF_OFILES := $(filter-out $(FIRST_OFILES), $(OFILES))
    
    BUILDDIR := $(call  CHANGE_PATHSEP,$(BUILDDIR))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    OBJDIRS := $(foreach file, $(OFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(KOFILES), $(dir $(file)))
    OBJDIRS += $(foreach file, $(OUTFILE), $(dir $(file)))
    OBJDIRS += $(BUILDDIR)
    OBJDIRS := $(sort $(OBJDIRS))
    OBJDIRS := $(addsuffix \.gitignore, $(OBJDIRS))
    
    ##############################################################
    CC := $(call  CHANGE_PATHSEP,$(CC))
    LD := $(call  CHANGE_PATHSEP,$(LD))
    AR := $(call  CHANGE_PATHSEP,$(AR))
    
    CFLAGS := $(call  CHANGE_PATHSEP,$(CFLAGS))
    OUTFILE := $(call  CHANGE_PATHSEP,$(OUTFILE))
    LIBDIR := $(call  CHANGE_PATHSEP,$(LIBDIR))
    OUTDIR := $(call  CHANGE_PATHSEP,$(OUTDIR))
    
    OBJDIRS := $(call  CHANGE_PATHSEP,$(OBJDIRS))
    
    CFLAGS := $(COMPILER_FLAGS) $(CFLAGS)
    
    #$(info OBJDIRS $(OBJDIRS))
    
    ##############################################################
    # 'all' rules
    all : dir $(OUTFILE)
    
    # Define a ".gitignore" file which will help in making sure the module's output
    # folder always exists.
    %.gitignore:
    #	@echo creating $@
    	$(Q) $(MKDIR_CMD) $(dir $@)
    	$(Q)echo .> $@
    dir: $(OBJDIRS)
    
    $(OUTFILE): $(KOFILES) $(OFILES)
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.k
    else
    $(BUILDDIR)%.obj: %.k
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --compile_only -fr=$(dir $@) "$<"
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: .\%.c
    else
    $(BUILDDIR)%.obj: %.c
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cpp
    else
    $(BUILDDIR)%.obj: .%.cpp
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    ifdef SystemRoot
    $(BUILDDIR)\%.obj: ./%.cc
    else
    $(BUILDDIR)%.obj: .%.cc
    endif
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo compiling $<
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)$(CC) $(CFLAGS) $< /Fo$@ /Fd$(BUILDDIR)$*.pdb
    else
    	$(Q)$(CC) $(CFLAGS) $< -o $@
    endif
    else
    	$(Q)echo compiling $<
    	$(Q)$(CC) $(CFLAGS) --preproc_with_compile -fr=$(dir $@) -ppd="$(BUILDDIR)$*.dep" $<
    endif
    
    
    ifneq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
    $(BUILDDIR)\%.obj : ./%.asm
    else
    $(BUILDDIR)%.obj : %.asm
    endif
    	$(Q)$(CC) $(CFLAGS) -c $^ --output_file=$@
    endif
    ##############################################################
    
    print :
    	echo $(LDFLAGS)
    	echo $(OFILES)
    	echo $(OUTFILE)
    	echo $(CFILES)
    	echo $(HFILES)
    	echo @$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    ##############################################################
    # clean rules
    .IGNORE: clean
    clean:
    ifdef SystemRoot
    	@echo echo OFF > temp_pps.bat
    	@FOR %%i IN ($(OFILES) $(KOFILES)) DO echo del %%i >> temp_pps.bat
    ifneq ($(TARGET_PLATFORM) , PC)
    	@FOR %%i IN ( $(DEPILES)) DO echo del %%i >> temp_pps.bat
    endif
    	@echo echo ON >> temp_pps.bat
    	@temp_pps.bat
    	@-del temp_pps.bat
    else
    	$(Q)$(RM_CMD) $(OFILES) $(KOFILES)
    endif	
    ifneq ($(BUILD_MODE),OBJ)
    	$(Q)$(RM_CMD) $(LIBDIR)
    endif
    	$(Q)$(RM_CMD) $(OUTDIR)
    ##############################################################
    
    
    ##############################################################
    .PHONY: libfile
    libfile: $(LIBDIR) $(KOFILES) $(OFILES) $(ARFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo Linking $(OUTFILE)
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)$(RM_CMD) ar_cmd.txt
    else	
    	@$(AR) $(ARFLAGS) $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif	
    endif 
    $(LIBDIR):
    	$(Q) $(MKDIR_CMD) $(LIBDIR) || cd $(LIBDIR)
    
    ##############################################################
    .PHONY: pllibfile
    pllibfile: $(LIBDIR) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)echo Linking $(OUTFILE)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)echo $(ARFLAGS) /OUT:$(OUTFILE) > ar_cmd.txt
    	$(Q)FOR %%i IN ($(OFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    else
    	$(Q)$(AR) $(ARFLAGS) -o $(OUTFILE) $(KOFILES) $(OFILES) $(ARFILES)
    endif
    else
    ifdef SystemRoot
    	$(Q)echo $(ARFLAGS) temp_pl.lib > ar_cmd.txt
    	$(Q)FOR %%i IN ($(RESTOF_OFILES) $(KOFILES) $(ARFILES)) DO echo %%i >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del ar_cmd.txt
    	$(Q)if exist $(OUTFILE) del $(OUTFILE)
    	$(Q)$(LD) -r $(LDFLAGS) --output_file="plink.out"  $(FIRST_OFILES) $(LDFILES) -m "plink.map" -l temp_pl.lib
    	$(Q)echo $(ARFLAGS) $(OUTFILE) > ar_cmd.txt
    	$(Q)echo plink.out >> ar_cmd.txt
    	$(Q)$(AR) @ar_cmd.txt
    	$(Q)-del temp_pl.lib
    	$(Q)-del ar_cmd.txt
    	$(Q)-del plink.map
    	$(Q)-del plink.out
    else	
    	$(Q)$(LD) -r --output_file="plink.out"  $(FIRST_OFILES) $(RESTOF_OFILES) $(KOFILES) -m "plink.map"
    	$(Q)$(AR) $(ARFLAGS) $(OUTFILE) plink.out
    endif	
    endif
    
    ##############################################################
    PC_LDFLAGS1 = $(filter-out %rtsarp32_v200.lib,$(LDFLAGS))
    PC_LDFLAGS = $(filter-out %rtsarp32_v200.lib",$(PC_LDFLAGS1))
    ALL_LIBS1 = $(filter %.lib,$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.lib"",$(PC_LDFLAGS))
    ALL_LIBS1 += $(filter %.a86",$(PC_LDFLAGS))
    
    ALL_LIBS  = $(subst .lib,.lib,$(ALL_LIBS1))
    
    ##############################################################
    .PHONY: outfile
    outfile: $(OUTDIR) $(KOFILES) $(OFILES) $(LDFILES)
    ifeq ($(TARGET_PLATFORM) , PC)
    ifdef SystemRoot
      #Window Host Emulation
    	$(Q)if exist $(OUTFILE).exe del $(OUTFILE).exe
    	$(Q)$(LD) $(ALL_LIBS) $(LDDEBUG) /nologo /MACHINE:X86 /OUT:$(OUTFILE).exe $(KOFILES) $(OFILES) $(LDFILES)
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) -o $(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) $(LDFLAGS) 
    endif
    else
    	$(Q)$(RM_CMD) $(OUTFILE)
    	$(Q)$(LD) $(LDFLAGS) --output_file=$(OUTFILE) $(KOFILES) $(OFILES) $(LDFILES) -m "$(OUTFILE)".map
    endif
    $(OUTDIR):
    	$(Q)$(MKDIR_CMD) $(OUTDIR) || cd $(OUTDIR)
    
    ##############################################################
    
    
    ##############################################################
    .PHONY: mergefile
    mergefile: 
    ifeq ($(TARGET_PLATFORM) , PC)
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libevekernels.eve.lib lib\$(TARGET_BUILD)\libeveprivkernels.eve.lib
    	$(Q)$(AR) $(ARFLAGS) /OUT:lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libevenatckernels.eve.lib lib\$(TARGET_BUILD)\libeveprivnatckernels.eve.lib
    else
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevekernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivkernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevekernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libevenatckernels.eve.lib
    	$(Q)$(AR) x lib/$(TARGET_BUILD)/libeveprivnatckernels.eve.lib
    	$(Q)$(AR) a lib/$(TARGET_BUILD)/libevenatckernels.eve.lib *.obj
    	$(Q)$(RM_CMD) *.obj
    endif
    ##############################################################
    
    
    define INCLUDE_DEPEND
    -include $(1).dep
    endef
    
    $(foreach obj,$(OFILES),$(eval $(call INCLUDE_DEPEND,$(basename $(obj)))))
    
    
    
    
    

  • Hi Anshu,

    Thanks for your reply. I will try doing it and get back to you.

    Regards,
    Ganesh
  • Hi Anshu,

    I used the rules.mk provided by you and was able to build dmautils and algframework. But when I try to build the eve source code, I am getting the same linker error as before.

    I followed all the steps mentioned in the userguides but no success.

    Thanks and Regards,
    Ganesh

  • Ganesh,

        Can you tell us the VSDK version and EVE SW version which you are using. From the logs which  you have shared the VSDK version is 2.12 which comes with eve_sw 1.14. But the eve sw version from the log is looking different (1.18 ) from the one which is released as part of VSDK 2.12. Can you tell us the exact SDK release from which you are using dmautils, algframework and evesw.

    Regards,

    Anshu

  • Ganesh,
    Can we close this thread now?

    Regards,
    Anshu
  • Hi Anshu,

    Thanks for your help!

    yes we can close it. In this thread, I had also asked one more doubt regarding reading external adaboost weight .bin in VDSK and I am waiting for answer from Shyam / Shiju 

    what should I do? Should open another thread?

    Thanks and Regards,

    Ganesh

  • Ganesh,
    Ideally these two queries should be in two different threads ( as they are not related). If you can create a new thread it would be more clearer as currently other question seems to be missed in the discussions which we had. But if you feel that there is already some discussion happened on the other question then you can continue in this thread only.

    Regards,
    Anshu
  • Hi Ganesh,

    How do you wish to proceed on this? Have you tried the above?
    I have looped in the export who can answer additional questions on how to pass the buffer from Vision SDK.

    Best regards,
    Manu.