Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a830531
Fix type-safety issues when copying host->device
jszuppe May 19, 2016
bba6c61
Add tests for copying host->device with mismatched types
jszuppe May 19, 2016
3493b75
Fix type, long_ and long might be different types
jszuppe May 21, 2016
d12e07c
Fix type-safety issues for async copying host->device
jszuppe May 21, 2016
7c3d0c2
Add tests for coping on device with mismatched types
jszuppe May 21, 2016
ce8230b
Coping from host for non-contiguous iterators (host)
jszuppe May 21, 2016
1419b7d
Type-safe copying from device to host
jszuppe May 22, 2016
2187821
Make sure there's no macro redefinition
jszuppe May 22, 2016
55ac7da
Fix test in test_functional_as.cpp
jszuppe May 22, 2016
7461c92
Add test for async coping with svm_ptr<>
jszuppe May 23, 2016
3dcbd4c
Fix async coping svm_ptr<> from/to/on device
jszuppe May 23, 2016
aaaaca4
Type-safe async coping from device to host
jszuppe May 24, 2016
933ff15
Better names for tests
jszuppe May 24, 2016
4280024
Now svm_ptr<T> keeps its context
jszuppe May 26, 2016
753f883
Support for svm_ptr<T> in meta_kernel
jszuppe May 27, 2016
5c29b50
Coping SVM to/from host by mapping SVM memory
jszuppe May 26, 2016
ba0da3f
Tests for copying SVM memory when types mismatch
jszuppe May 27, 2016
69e09f2
Minor fixes in test_copy.cpp
jszuppe May 28, 2016
c9a0aba
Remove debug macro, fix names of event variables
jszuppe May 28, 2016
bffc9f7
Fix async copying when first == last (input is empty)
jszuppe May 28, 2016
8f4db3d
Reuse dispatch_copy_async() in dispatch_copy()
jszuppe May 28, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions example/opencv_histogram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
//Code sample for calculating histogram using OpenCL and
//displaying image histogram in OpenCV.

#define BOOST_COMPUTE_DEBUG_KERNEL_COMPILATION

#include <iostream>
#include <string>

Expand Down
Loading