Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 그라파나
- 안드로이드 웹뷰
- Play2 로 웹 개발
- 스위프트
- Actor
- play2 강좌
- 파이썬 동시성
- 플레이프레임워크
- 하이퍼레저 패브릭
- 주키퍼
- 블록체인
- 파이썬
- Adapter 패턴
- Akka
- 파이썬 데이터분석
- Play2
- 이더리움
- 스칼라 강좌
- 스칼라
- 파이썬 강좌
- akka 강좌
- 파이썬 머신러닝
- play 강좌
- Golang
- CORDA
- 하이브리드앱
- 스칼라 동시성
- hyperledger fabric
- Hyperledger fabric gossip protocol
- 엔터프라이즈 블록체인
Archives
- Today
- Total
HAMA 블로그
FOR_reduction.cpp 본문
/*
#include <stdio.h>
#include <stdlib.h>
#include <omp.h>
#include <boost/timer.hpp>
const int num_steps=100;
int main()
{
boost::timer t;
int sum = 0, i = 0;
int Data[num_steps] = {0};
for(i =0 ; i < num_steps; i++)
{
Data[i] = i + 1;
}
#pragma omp parallel for reduction(+:sum)
for(i = 0 ; i < num_steps; i++)
{
sum += Data[i];
}
printf(" 총합 sum = %d \n", sum);
double t2_insert = t.elapsed();
printf("time: %.8lf \n", t2_insert);
return EXIT_SUCCESS;
}
*/
'OpenMP,PPL' 카테고리의 다른 글
OP_TEST_REDUCTION.cpp (0) | 2014.08.27 |
---|---|
FOR_default.cpp (0) | 2014.08.27 |
CRITICAL_SECTION.cpp (0) | 2014.08.27 |
Comments