rgiduthuri/openvx_tutorial

Getting error "‘struct _vx_graph’ has no member named ‘enable_node_level_opencl_flush’"

Closed this issue · 4 comments

Hi, when I try to use 'make' in my build folder after creating it with cmake, I get the following error:

/home/thisuser/Desktop/openvx_tutorial-master/tutorial_exercises/amdovx-core/openvx/ago/ago_interface.cpp: In function ‘vx_status agoDirective(vx_reference, vx_enum)’:
/home/thisuser/Desktop/openvx_tutorial-master/tutorial_exercises/amdovx-core/openvx/ago/ago_interface.cpp:2315:31: error: ‘struct _vx_graph’ has no member named ‘enable_node_level_opencl_flush’
((AgoGraph *)reference)->enable_node_level_opencl_flush = false;

Am I missing a package here or something? (I am using Ubuntu 16.04.3 LTS)

@TurboGurra Thanks for reporting the problem. This build error is fixed in develop branch.
Please checkout 'develop' branch and try the same.

Where can I find this branch? It is not listed in the branches section.

Try this:

% cd openvx_tutorial/tutorial_exercises/amdovx-core
% git checkout develop
% git pull

It successfully compiled now, thank you very much!