We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b1d861 commit a8db3bbCopy full SHA for a8db3bb
Code_Exercises/Exercise_18_Local_Memory_Tiling/solution.cpp
@@ -30,8 +30,8 @@ inline constexpr int filterWidth = 11;
30
inline constexpr int halo = filterWidth / 2;
31
32
TEST_CASE("image_convolution_tiled", "local_memory_tiling_solution") {
33
- const char *inputImageFile = "../Images/dogs.png";
34
- const char *outputImageFile = "../Images/blurred_dogs.png";
+ constexpr auto inputImageFile = "../Images/dogs.png";
+ constexpr auto outputImageFile = "../Images/blurred_dogs.png";
35
36
auto inputImage = util::read_image(inputImageFile, halo);
37
0 commit comments