일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 딥러닝
- Artificial Intelligence
- 빅데이타
- Big Data
- data science
- 통계
- 인공지능
- 주일설교
- c++
- Statistics
- Deep learning
- WebGL
- openCV
- 몽고디비
- 김양재
- No SQL
- R
- 빅 데이터
- 김양재 목사님
- nodeJS
- 빅 데이타
- Machine Learning
- MongoDB
- 김양재 목사
- 확률
- 우리들교회
- 빅데이터
- node.js
- probability
- 데이터 과학
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