lion03 / thrust

Automatically exported from code.google.com/p/thrust
Apache License 2.0
0 stars 0 forks source link

eliminate device:: implementations of certain algorithms using zip_iterator #163

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
inner_product() = zip_iterator + reduce()
http://code.google.com/p/thrust/source/browse/thrust/detail/device/generic/inner
_product.inl

transform() = zip_iterator + for_each()
transform_if() = zip_iterator + for_each()
http://code.google.com/p/thrust/source/browse/thrust/detail/device/generic/trans
form.inl

(I'm not 100% sure about this one yet)
scatter() = zip_iterator + permutation_iterator + transform()
scatter_if() = zip_iterator + permutation_iterator + transform_if()
http://code.google.com/p/thrust/source/browse/thrust/detail/device/generic/scatt
er.inl

Original issue reported on code.google.com by wnbell on 26 Jun 2010 at 4:00

GoogleCodeExporter commented 8 years ago
the stuff in extrema.h

Original comment by jaredhoberock on 26 Jun 2010 at 9:09

GoogleCodeExporter commented 8 years ago
Closing this issue and moving the remaining extrema.h portion to issue #197

Original comment by wnbell on 1 Sep 2010 at 5:31