Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.

TBB Pipeline Compile Errors

creatiwit
Beginner
192 Views
I am trying to build a TBB pipeline with the new syntax as described in the tutorial, using tbb:filter_t as below
FILE *fd
tbb::filter_t f1( tbb::filter::serial_in_order,
MyInputFunc(fd) );
but it keeps throwing a compile error:
tbb40_20120201oss/include/tbb/pipeline.h:416: error: passing const MyInputFunc as this argument of TextSlice* MyInputFunc::operator()(tbb::interface6::flow_control&) discards qualifiers
It works fine with the inheritance based old filter API.
tbb::filter_t f1( tbb::filter::serial_in_order, MyInputFunc(fd) );
0 Kudos
1 Reply
creatiwit
Beginner
192 Views
Never mind looking at pipeline.h, I realized it requires const functions. Changing the operator() to const, fixed it.
I would recommend updating the tutorial and documentation to please reflect that you expect consts.
0 Kudos
Reply