Changes

Jump to: navigation, search

GPU610/gpuchill

99 bytes added, 22:16, 4 April 2019
Assignment 2
<pre>
// Reflect Image Horizontally
__global__ void reflectImgH(int* a, int* b, int rows, int cols) {
int i = blockIdx.x * blockDim.x + threadIdx.x;
}
 
//Reflect Image Vertically
__global__ void reflectImgV(int* a, int* b, int rows, int cols) {
int i = blockIdx.x * blockDim.x + threadIdx.x;
</pre>
 
====Results====
[[File:CHART2GOOD.png]]
=== Assignment 3 ===
7
edits

Navigation menu