No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
84db53f
... +0 ...
29ef310
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
11 | 11 | { |
|
12 | 12 | if (!vex::Filter::CC(3, 0)(ctx.device(0))) return; |
|
13 | 13 | ||
14 | - | VEX_FUNCTION(float, imread, (CUtexObject, tex)(int, i), |
|
14 | + | VEX_FUNCTION(float, imread, (vex::cuda_tex_object, tex)(int, i), |
|
15 | 15 | return tex1Dfetch<float>(tex, i); |
|
16 | 16 | ); |
|
17 | 17 |
41 | 41 | ||
42 | 42 | vex::vector<float> x(q1, n); |
|
43 | 43 | ||
44 | - | x = imread(tex, p); |
|
44 | + | x = imread(vex::wrap(tex), p); |
|
45 | 45 | ||
46 | 46 | check_sample(x, [](size_t, float a) { |
|
47 | 47 | BOOST_CHECK_EQUAL(a, 42); |
Learn more Showing 1 files with coverage changes found.
examples/devlist.cpp
Files | Coverage |
---|---|
tests | -0.03% 99.84% |
vexcl | -0.07% 94.87% |
examples/devlist.cpp | 75.00% |
Project Totals (117 files) | 95.74% |
29ef310
84db53f