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
- 파이썬 강좌
- akka 강좌
- 스칼라
- 파이썬 데이터분석
- Play2 로 웹 개발
- play2 강좌
- Golang
- Actor
- Play2
- 스칼라 강좌
- 플레이프레임워크
- 스칼라 동시성
- Akka
- hyperledger fabric
- 하이브리드앱
- Hyperledger fabric gossip protocol
- 하이퍼레저 패브릭
- 그라파나
- 파이썬 머신러닝
- Adapter 패턴
- play 강좌
- CORDA
- 파이썬 동시성
- 이더리움
- 스위프트
- 파이썬
- 블록체인
- 엔터프라이즈 블록체인
- 주키퍼
- 안드로이드 웹뷰
Archives
- Today
- Total
HAMA 블로그
CRITICAL_SECTION.cpp 본문
/*
#include <stdio.h>
#include <stdlib.h>
#include <omp.h>
#include <boost/timer.hpp>
const int num_steps=1000;
int main()
{
boost::timer t;
int sum = 0, i = 0;
float * Data = new float[num_steps];
for(i =0 ; i < num_steps; i++)
{
Data[i] = i;
}
float max = 0;
#pragma omp parallel for
for(i = 0 ; i < num_steps; i++)
{
#pragma omp critical (MAXVALUE)
{
if(max < Data[i])
max = Data[i];
}
}
printf(" max = %f \n", max);
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_reduction.cpp (0) | 2014.08.27 |
FOR_default.cpp (0) | 2014.08.27 |
Comments