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.

TDA4VM: vxAddParameterToGraph: number of graph parameters greater than maximum allowed

Part Number: TDA4VM

The number of my DL model's head is 9. When I run the model in tda4,there is some error()s.

I try to:

(1)Change TIVX_GRAPH_MAX_PARAMS in tiovx/include/TI/tivx_config.h,then run these commands:1.cd vision_apps, 2.make clean, 3.make vision_apps.

(2)Copy c66.out and c7x.out into tda4 target, and rename them, reboot

(3)Run the model again,but the error is still.

Please help me.

  • Hi,

    I believe you have changed the value TIVX_GRAPH_MAX_PARAMS to 9 in tiovx/include/TI/tivx_config.h file correct?
    In this case since you have made changes in the tiovx folder, kindly build the full sdk.

    i.e. in vision_apps folder enter the below commands..
         
          make tiovx_scrub
          make vision_apps_scrub
          make sdk -jN                => where N is the number of parallel threads

    Please check if you are facing the issue after building the above way.

    Regards,
    Nikhil

  • It works. Thank you!