Sale!

Focus: CUDA (D,E): Thread Synchronization

Original price was: $35.00.Current price is: $30.00.

5/5 - (1 vote)

A7 (30 marks + up to 5 bonus marks)
Focus: CUDA (D,E): Thread Synchronization
In this assignment, you will write code to compute a convolution of an input image with a filter (also
known as a convolution kernel1
). In this process, the convolution process takes as input two matrices,
the image A and the filter F, and outputs a matrix, the convolved image H. The example below shows
result of applying a blur filter to an image of the Okanagan valley:
Input Image A Output Image H
Convolution Filter F
To illustrate the convolution operation, consider a matrix of floating-point numbers, where each cell
stores a value reflecting the intensity of an image pixel ranging from 0 for black to 1 for white. For
example:
𝐴 =
[

 

 

𝟏. 𝟎 0.0 0.0
0.0 0.0 0.0
0.0 0.0 𝟏. 𝟎
0.0 0.0 0.0
0.0 0.0 0.0
𝟏. 𝟎 0.0 0.0
0.0 0.0 𝟏. 𝟎
0.0 0.0 0.0
0.0 0.0 0.0
𝟏. 𝟎 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0]

 

 

And assume we are using the convolution filter below (which is a matrix usually with smaller size):
𝐹 = [
0.0 0.1 0.0
0.1 0.6 0.1
0.0 0.1 0.0
]
The convolution of A with F would be
𝐻 =
[

 

 

𝟎. 𝟖 0.0 0.0
0.0 0.0 𝟎. 𝟏
0.0 𝟎. 𝟏 𝟎. 𝟖
0.0 0.0 0.0
𝟎. 𝟏 0.0 0.0
𝟎. 𝟖 𝟎. 𝟏 0.0
0.0 𝟎. 𝟏 𝟎. 𝟖
0.0 0.0 𝟎. 𝟏
0.0 0.0 0.0
𝟎. 𝟖 𝟎. 𝟏 0.0
𝟎. 𝟏 0.0 0.0
0.0 0.0 0.0]

 

 

1 This term does not refer to the CUDA kernel function, but instead to a matrix used during the convolution
operation.
The algorithm for computing the output image H includes the following steps:
1- For each pixel of A located at ( i , j ), consider a submatrix S centered at ( i , j ) with the same
size as the kernel F. For example, for ( i , j ) = (2 , 2), i.e. the red value in A, the resulting
submatrix includes the values highlighted in yellow in A.
𝐴 =
[

 

 

1.0 0.0 0.0
0.0 𝟎. 𝟎 𝟎. 𝟎
0.0 𝟎. 𝟎 𝟏. 𝟎
0.0 0.0 0.0
𝟎. 𝟎 0.0 0.0
𝟏. 𝟎 0.0 0.0
0.0 𝟎. 𝟎 𝟏. 𝟎
0.0 0.0 0.0
0.0 0.0 0.0
𝟏. 𝟎 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0]

 

 

→ 𝑆 = [
𝟎. 𝟎 𝟎. 𝟎 𝟎. 𝟎
𝟎. 𝟎 𝟏. 𝟎 𝟏. 𝟎
𝟎. 𝟎 𝟏. 𝟎 𝟏. 𝟎
]
2- Compute the element-wise sum-of-products of S and F, i.e. ,
𝑣𝑎𝑙𝑢𝑒 𝑓𝑜𝑟 ( 𝑖 ,𝑗 ) = (0.0 + 0.0 + 0.0) + (0.0 + 0.6 + 0.1) + (0.0 + 0.1 + 0.0) = 0.8
3- Store value in H( i , j ). For the above example, H( 2 , 2 ) = 0.8
For pixels at the boundary, you could replicate the values at the matrix edges to fill in the cells in S that
represent the out-of-bound pixels. For example, the submatrix S for the pixel A(0,0) would be as follows
(replicated values are written in green):
𝐴 =
[

 

 

𝟏. 𝟎 0.0 0.0
0.0 0.0 0.0
0.0 0.0 1.0
0.0 0.0 0.0
0.0 0.0 0.0
1.0 0.0 0.0
0.0 0.0 1.0
0.0 0.0 0.0
0.0 0.0 0.0
1.0 0.0 0.0
0.0 0.0 0.0
0.0 0.0 0.0]

 

 

→ 𝑆 = [
1.0 1.0 0.0
1.0 𝟏. 𝟎 0.0
0.0 0.0 0.0
]
There are other options for the boundary pixels, e.g., to set the out-of-boundary pixels to 0.0.
In this assignment, the input image A is a 32-bit color image represented using RGBA format (e.g., the
Okanagan valley image above). That is, every pixel in the image is 32-bits: 8-bits to represent the Red
component, 8-bits for Green, 8-bits for Blue, and 8-bits for the Alpha channel. The filter F is a square
floating-point matrix representing a blur operator (similar to the filter given in the examples above). The
filter is stored as an image (e.g., filter_blur_21.bmp which is a 21-pixel wide filter)2
.
You are provided with the serial implementation of the convolution operation. The provided code uses
the open-source EasyBMP3
for reading and writing a BMP image. You are also provided with extra
functions to convert an image to a format suitable for our program. In this format, each matrix element
(i.e., pixel) is represented as uchar4 CUDA type, which is a 4-byte type that has four components: x, y,
z, and w, each represented in 1 byte (unsigned char). This type is perfectly suitable to represent a RGBA
image pixel where each uchar4 component can be used to represent on image channel (R,G,B,A).

2 Note that different filters produce different effects e.g., blur, sharpen, edge-detect, etc. See
https://en.wikipedia.org/wiki/Kernel_%28image_processing%29 for an example of different filters.
3 The full EasyBMP library and samples can be downloaded from easybmp.sourceforge.net. You don’t need the full
library as the required files are already attached to this assignment.
You need to do the following:
1. First, read the copyright note of the EasyBMP library. Unzip A7_serial.zip and copy the unzipped files
into a new VS project (as you did in assignment A6)
2. Then, read the code in the file “convolution.cu” and understand its operation. Detailed comments
are provided in order to explain how the code works. There is no need to read the code in the other
files.
3. Once you finish the above, you need to:
– [+26] Provide CUDA implementation of convolution_32bits() and the helper function
convolution_8bits()
o +8 marks for the host code
o +4 marks for an additional function convolution_8bits_parallel()
o +10 marks for an additional function convolution_32bits_parallel()as
follows: +3 for splitting the image into four channels, +3 for proper threads
synchronization, +4 for applying the 8bit convolution to each channel.
o +4 marks for checking for errors from CUDA API calls and from Kernel Launch.
– [+4] Time your code and report the speedup of using your CUDA implementation vs. the
provided serial implementation.
o +1 mark for reporting the serial time
o +2 marks for reporting the parallel time and speedup.
o +1 mark for including the output image from the parallel launch (even if it has errors)
Add the timing notes and the output image from running your code in an MS Word.
– Up to +5 bonus marks for creating two more filters, testing them using your code, and reporting
the resulting images. Note that the code assumes we use a square filter with a width of odd
number of pixels.

Submission Instructions
For this assignment, you need to submit to Canvas the following items in one zip file with your ID as its
name (e.g., 1234567.zip):
– The convolution.cu file which has two additional functions: convolution_8bits_parallel() and
convolution_32bits_parallel()
– An MS Word file that includes the output image and the time comparison (speedups): serial vs.
parallel

Scroll to Top