Closed GoogleCodeExporter closed 9 years ago
I think the trunk revision number is entertaining, if not appropriate :)
Original comment by ryan.lam...@gmail.com
on 3 Nov 2012 at 12:56
Attachments:
The patch, in short:
/* for backward compatibility reasons we still honor execution mode, but only
if the Range *does not* contain a device specification */
Device device = _range.getDevice();
if ((kernel.getExecutionMode().isOpenCL() && device == null) || (device instanceof OpenCLDevice))
becomes
// See if user supplied a Device
Device device = _range.getDevice();
/* for backward compatibility reasons we still honor execution mode */
if (kernel.getExecutionMode().isOpenCL()) {
if ((device == null) || (device instanceof OpenCLDevice)) {
Original comment by ryan.lam...@gmail.com
on 3 Nov 2012 at 12:58
It appears this patch did not make it into the latest Aparapi release? I am
seeing the same behavior as the previous codebase and I do not see the patch
applied to the trunk.
If that is true, I will have to apply the patch this week.
Original comment by ryan.lam...@gmail.com
on 19 Nov 2012 at 6:35
The patch has been applied to the trunk
Original comment by ryan.lam...@gmail.com
on 19 Nov 2012 at 8:11
Original issue reported on code.google.com by
ryan.lam...@gmail.com
on 3 Nov 2012 at 12:54