Bolt is a C++ template library optimized for GPUs. Bolt provides high-performance library implementations for common algorithms such as scan, reduce, transform, and sort.
Other
372
stars
65
forks
source link
unable to input bolt::cl::transform_iterator into bolt::cl::copy #231
This problem seems to be because
bolt::cl::transform_iterator
have the methodgetContainer()
only with template typebut
bolt::cl::copy
needs ITERATOR::getContainer() without any template typeThis can be solved with C++11
I don't have any idea in C++03 (
boost::result_of
?).