Created
October 14, 2018 22:45
-
-
Save rharriso/3b6027b48547e540b469ab12b17d304c to your computer and use it in GitHub Desktop.
Looking at Thrust: main-cpu.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <math.h> | |
#include <cstdlib> | |
#include <vector> | |
int main () { | |
int N = 8000 * 8000; // 800px x 800px image | |
int iterations = 10; | |
int size = N*sizeof(float); | |
float *x, *y, *output; | |
x = (float *) malloc(size); | |
y = (float *) malloc(size); | |
output = (float *) malloc(size); | |
for (int i = 0; i < N; i++) { | |
x[i] = ((float) std::rand()) / (float) RAND_MAX; | |
y[i] = ((float) std::rand()) / (float) RAND_MAX; | |
} | |
// initialize random arrays | |
for (int blerp = 0; blerp < iterations; blerp++) { | |
for (int i = 0; i < N; i++) { | |
output[i] = x[i] + y[i]; | |
} | |
} | |
free(x); | |
free(y); | |
free(output); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment