Francesco Giacomini

Results 3 issues of Francesco Giacomini

The clone_kernel test (in `test/test_kernel.cpp`) ``` BOOST_AUTO_TEST_CASE(clone_kernel) { REQUIRES_OPENCL_PLATFORM_VERSION(2, 1); compute::kernel k1 = compute::kernel::create_with_source( "__kernel void test(__global int * x) { x[get_global_id(0)] = get_global_id(0); }", "test", context ); compute::buffer x(context,...

This is an attempt to better integrate the Ninja build system (issue #29, but also #6). It is just meant for discussion, for there are still a few things to...

The same example provided in issue #6 shows that also the support for lcov is failing when using the Ninja generator. ``` $ cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DENABLE_COVERAGE=ON .. $...