일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- openCV
- 우리들교회
- MongoDB
- Big Data
- 주일설교
- 통계
- probability
- R
- 빅 데이타
- 빅데이타
- 김양재 목사님
- Statistics
- nodeJS
- Artificial Intelligence
- node.js
- No SQL
- 확률
- 딥러닝
- data science
- 빅데이터
- Machine Learning
- WebGL
- 김양재 목사
- 몽고디비
- Deep learning
- c++
- 인공지능
- 빅 데이터
- 김양재
- 데이터 과학
Archives
- Today
- Total
목록vector add (1)
Scientific Computing & Data Science
[CUDA] Vector Add 예제 2.
[VectorAdd.cu]#include "cuda_runtime.h" #include "device_launch_parameters.h" #include #define arraySize 1000 __global__ void addKernel( int *c, const int *a, const int *b ) { int i = threadIdx.x; if( i < arraySize ) c[i] = a[i] + b[i]; } int main() { int a[arraySize]; int b[arraySize]; int c[arraySize]; int *dev_a = 0; int *dev_b = 0; int *dev_c = 0; // fill the arrays 'a' and 'b' on the CPU fo..
Scientific Computing/NVIDIA CUDA
2015. 1. 2. 20:28