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
- 안드로이드 웹뷰
- 파이썬 머신러닝
- 파이썬 동시성
- 스위프트
- Hyperledger fabric gossip protocol
- 그라파나
- Play2 로 웹 개발
- hyperledger fabric
- 하이브리드앱
- 엔터프라이즈 블록체인
- CORDA
- 파이썬 강좌
- Golang
- 스칼라 동시성
- 블록체인
- 주키퍼
- Actor
- 하이퍼레저 패브릭
- 파이썬
- 플레이프레임워크
- Play2
- 이더리움
- Akka
- 스칼라
- Adapter 패턴
- 스칼라 강좌
- akka 강좌
- 파이썬 데이터분석
- play2 강좌
- play 강좌
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