Hello Everyone,
I am developing a custom application using TI's VISION APPS and PyTIOVX tool.
My application is divided into different modules-(say 6 nodes/kernels)
I have generated custom kernel for each of my modules and is successful and I have even built and compiled my application code (CPP code) to add as a static library.
I have also created an application graph for my usecase.
But, now I am facing many issues when passing input to application graph and printing output from my application graph.
I have the following queries.
1) As of now, i am individually generating kernels and static library for each node. I need some clarity on how to integrate them. Should I work with application graph on getting output from node 1 to pass it to node 2 and so on till node 6? Or is there any other way out to pass directly from one node to the other? (Because it is difficult to get output from each node and pass it to the other as each node outputs data of different format).
I have just created a sample with two_nodes (addition & multiplication) and attached the same. Please verify the attachment as I am able to get output from node 1 but not node 2.
/cfs-file/__key/communityserver-discussions-components-files/791/7558.test.zip
2) Please suggest me a data object to pass input of the form
ut_Vec3F32 input[3]={{0.228500 ,0.374200 ,0.000000} ,{0.112500 ,0.387800 ,0.000000} ,{0.041200 ,0.363200 ,0.000000} };
where,
typedef struct
{ float data[3];
}ut_Vec3F32;
Any insight on this would really be helpful.
Thanks & Regards,
Padmasree N.