used to sort devices by number of compute units
| 135 | |
| 136 | // used to sort devices by number of compute units |
| 137 | bool compare_compute_units(const boost::compute::device &a, |
| 138 | const boost::compute::device &b) |
| 139 | { |
| 140 | return a.compute_units() < b.compute_units(); |
| 141 | } |
| 142 | |
| 143 | BOOST_AUTO_TEST_CASE(partition_by_counts) |
| 144 | { |
nothing calls this directly
no test coverage detected