Skip to content

Commit

Permalink
Correction of mex function in starter project for orc
Browse files Browse the repository at this point in the history
  • Loading branch information
hkbinaurics committed Apr 19, 2024
1 parent ca0b8b4 commit 8905e17
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ namespace JVX_PROJECT_NAMESPACE {

handle.prmAsync.volume = processing_lib.prmAsync.volume;

ayf_starter_prepare(&handle, "avx");
#ifdef USE_ORC
processing_lib.prmAsync.orcTokenBackend_ip = genStarter_node::properties.orcBackendIp.value.c_str();
processing_lib.prmAsync.orcTokenBackend_op = genStarter_node::properties.orcBackendOp.value.c_str();
processing_lib.prmAsync.orcTokenDebug = genStarter_node::properties.orcDebugLevel.value.c_str();
#endif
ayf_starter_prepare(&handle);

ayf_starter_process(&handle, paramIn0, paramOut0, dimInY0, dimOutY0, dimInX0);

Expand Down

0 comments on commit 8905e17

Please sign in to comment.