Answered step by step
Verified Expert Solution
Question
1 Approved Answer
computer science question your input image is named santa - grayscale.jpg , the execution command would be / / convolution santa - grayscale.jpg
computer science question
your input image is named "santagrayscale.jpg the execution command would be convolution santagrayscale.jpg
No command argument for filter radius is necessary in this assignment, as we utilize the constant average filter of size where the filter radius is
Within
convolution.cu implement one host function and two CUDA kernels to perform convolution, respectively. Specifically,
a A host function that performs the convolution operation using CPUonly.
b A CUDA kernel that performs the convolution operation using GPU but without tiling. You may refer to the example provided on Slide in Module but please modify it to incorporate the average filter matrix. It is acceptable to load the average filter from either GPU global memory or constant memory.
c An optimized CUDA kernel that presents a "tiled" version of the convolution operation using GPU shared memory. Specifically, in this optimized kernel, please load the average filter from GPU constant memory.
Ensure that your code can handle images with varying image sizes. Please also consider boundary conditions to ensure proper handling in such cases.
For testing purposes, two input images of different sizes are provided in the zipped folder accompanying this assignment.
"santagrayscale.jpg: a grayscale image of size
"treegrayscale.jpg: a grayscale image of size
You may also choose to test your program with additional grayscale images if desired.
Utilize timing techniques such as CPU timers or CUDA events, to measure the performance of your implementation of the host function and two CUDA kernels as specified above.
We also suggest structuring the
convolution.cu by implementing the following macros, host functions, and CUDA kernels. At the end of this assignment, we will provide screenshots of an example of the program's structure.
#define CHECKcall
A macro for error checking.
double myCPU'Timer
A timer for measuring execution time.
void blurImagehcv::Mat PoutMath cv::Mat PinMath unsigned int nRows, unsigned int nCols
A host function for CPUonly convolution.
globalvoid blurImageKernelunsigned char Pout, unsigned char Pin, unsigned int width, unsigned int height
A CUDA kernel performs a simple convolution without using tiling.
void void blurImagedcv::Mat PoutMath cv::Mat PinMath unsigned int nRows, unsigned int nCols
A host function for handling device memory allocation and free, data copy, and calling the specific CUDA kernel, blurImageKernel
Given a string s find the length of the longest substring without repeating characters.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started