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 강좌
- 파이썬 머신러닝
- 하이퍼레저 패브릭
- CORDA
- Adapter 패턴
- Play2 로 웹 개발
- 스칼라
- Play2
- 블록체인
- hyperledger fabric
- 스위프트
- 엔터프라이즈 블록체인
- 스칼라 강좌
- Actor
- 파이썬 동시성
- 파이썬 강좌
- 파이썬
- 파이썬 데이터분석
- Golang
- 플레이프레임워크
- 스칼라 동시성
- akka 강좌
- Akka
- 안드로이드 웹뷰
- 이더리움
- 하이브리드앱
- Hyperledger fabric gossip protocol
- play 강좌
- 그라파나
Archives
- Today
- Total
HAMA 블로그
FOR_default.cpp 본문
/*
#include <stdio.h>
#include <stdlib.h>
#include <omp.h>
#include <boost/timer.hpp>
int num_steps=100;
int main()
{
boost::timer t;
int a = 0;
printf("main area / a = %d \n", a);
#pragma omp parallel default(none) private(a) // default(shared)
{
if( omp_get_thread_num() == 0)
a = 1;
else
a = 2;
printf("%d thread area / a = %d \n", omp_get_thread_num(), a);
}
printf("main area / a = %d \n", a);
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 |
CRITICAL_SECTION.cpp (0) | 2014.08.27 |
Comments