OpenMP와 같은 공유 메모리 기반의 병렬 프로그램에서 발생하는 경합은 프로그래머가 의도하지 않은 비결정적인 수행 결과를 초래하므로 반드시 탐지되어야한다. 이러한 경합의 존재를 수행 ...
http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.
변환된 중국어를 복사하여 사용하시면 됩니다.
https://www.riss.kr/link?id=A101433468
김영주 (한국과학기술원) ; 정민섭 (㈜글로벌스텐다드테크놀로지 SE사업본부) ; 전용기 (경상대학교) ; Kim, Young-Joo ; Jung, Min-Sub ; Jun, Yong-Kee
2010
Korean
KCI등재
학술저널
9-18(10쪽)
0
0
상세조회0
다운로드국문 초록 (Abstract)
OpenMP와 같은 공유 메모리 기반의 병렬 프로그램에서 발생하는 경합은 프로그래머가 의도하지 않은 비결정적인 수행 결과를 초래하므로 반드시 탐지되어야한다. 이러한 경합의 존재를 수행 ...
OpenMP와 같은 공유 메모리 기반의 병렬 프로그램에서 발생하는 경합은 프로그래머가 의도하지 않은 비결정적인 수행 결과를 초래하므로 반드시 탐지되어야한다. 이러한 경합의 존재를 수행 중에 검증하는 기존의 기법들은 내부적 비결정성이 존재하지 않는 프로그램에 대해서만 가능하다. 하지만 이 조건을 만족하지 못한다면 경합검증을 위해서 각 임계구역마다 적어도 N! 만큼의 프로그램 수행이 필요하다. 여기서 N은 탐지 대상 프로그램이 가진 최대 병렬성을 의미한다. 본 논문에서는 프로그램 슬라이싱을 이용하여 내부적 비결정성을 가진 프로그램에 존재하는 비결정적 접근사건을 정적으로 분석하고, 이 정보를 이용하여 한번의 수행으로 실제 경합뿐만 아니라 잠재적 경합까지 탐지할 수 있는 경합 전처리기를 제안한다. 제안된 도구는 OpenMP 병렬 프로그램에서 발생할 수 있는 비결정적 접근사건들에 대해서 항상 결정적으로 감시할 수 있으므로 임계구역 가진 프로그램 모델에 적용할 수 있는 어떠한 경합탐지 프로토콜을 사용하더라도 경합 검증이 가능하다. 본 도구의 실험적 증명을 위해서 비결정성이 포함된 합성 프로그램, 공인된 벤치마크 프로그램인 OpenMP Microbenchmark, NAS Parallel Benchmark, 그리고 OpenMP 응용 프로그램을 이용하여 제안된 도구의 정확성을 보인다.
다국어 초록 (Multilingual Abstract)
Races that occur in shared-memory parallel programs such as OpenMP programs must be detected for debugging because of causing unintended non-deterministic results. Previous works which verify the existence of these races on-the-fly are limited to the ...
Races that occur in shared-memory parallel programs such as OpenMP programs must be detected for debugging because of causing unintended non-deterministic results. Previous works which verify the existence of these races on-the-fly are limited to the programs without internal non-determinism. But in the programs with internal non-determinism, such works need at least N! execution instances for each critical section to verify the existence of races, where N is the degree of maximum parallelism. This paper presents a preprocessor that statically analyzes the locations of non-deterministic accesses using program slicing and can detect apparent races as well as potential races through single execution using the analyzed information. The suggested tool can deterministically monitor non-deterministic accesses to occur in OpenMP programs so that this tool can verify the existence of races even if it is used any race detection protocol which can apply to programs with critical section. To prove empirically this tool, we have experimented using a set of benchmark programs such as synthetic programs that involve non-deterministic accesses, OpenMP Microbenchmark, NAS Parallel Benchmark, and OpenMP application programs.
참고문헌 (Reference)
1 Netzer, R. H. B, "What Are Race Conditions? Some Issues and Formalizations" 74-88, 1992
2 Ferrante, J, "The Program Dependence Graph and Its Use in Optimization" ACM 319-349, 1987
3 Jin, H, "The OpenMP Implementation of NAS Parallel Benchmarks and its Performance" NASA Ames Research Center 1999
4 SUN Microsystems Inc, "Sun Studio12: Thread Analyzer User's Guide"
5 Yu, Y, "Race Track: Efficient Detection of Data Race Conditions via Adaptive Tracking" ACM 221-234, 2005
6 Dagum, L, "OpenMP: An Industry-Standard API for Shared-Memory Programming" IEEE 5 (5): 46-55, 1998
7 김영주, "OpenMP 디렉티브 프로그램을 위한 자료경합 검증도구" 한국정보과학회 34 (34): 395-406, 2007
8 Petersen, P, "OpenMP Support in the Intel Thread Checker" 1-12, 2003
9 Jun, Y, "On-the-fly Detection of Access Anomalies in Nested Parallel Loops" ACM 28 (28): 107-117, 1993
10 Praun, C, "Object Race Detection" ACM 70-82, 2001
1 Netzer, R. H. B, "What Are Race Conditions? Some Issues and Formalizations" 74-88, 1992
2 Ferrante, J, "The Program Dependence Graph and Its Use in Optimization" ACM 319-349, 1987
3 Jin, H, "The OpenMP Implementation of NAS Parallel Benchmarks and its Performance" NASA Ames Research Center 1999
4 SUN Microsystems Inc, "Sun Studio12: Thread Analyzer User's Guide"
5 Yu, Y, "Race Track: Efficient Detection of Data Race Conditions via Adaptive Tracking" ACM 221-234, 2005
6 Dagum, L, "OpenMP: An Industry-Standard API for Shared-Memory Programming" IEEE 5 (5): 46-55, 1998
7 김영주, "OpenMP 디렉티브 프로그램을 위한 자료경합 검증도구" 한국정보과학회 34 (34): 395-406, 2007
8 Petersen, P, "OpenMP Support in the Intel Thread Checker" 1-12, 2003
9 Jun, Y, "On-the-fly Detection of Access Anomalies in Nested Parallel Loops" ACM 28 (28): 107-117, 1993
10 Praun, C, "Object Race Detection" ACM 70-82, 2001
11 Bull,J.M, "Measuring Synchronisation and Scheduling Overheads in OpenMP" 99-105, 1999
12 O'Callahan, R, "Hybrid Dynamic Data Race Detection" ACM 2003
13 Stefan S, "Eraser: a dynamic data race detector for multithreaded programs" ACM 391-411, 1997
14 Kim, Y, "Effcient Race Verfication for Debugging Programs with OpenMP Directives" Springer 4671 : 230-239, 2007
15 Cheng, G. I, "Detecting Data Races in Cilk Programs that Use Locks" ACM 298-309, 1998
16 Dinning, A, "Detecting Access Anomalies in Programs with Critical Sections" 85-96, 1991
17 Terboven,C, "Comparing Intel Thread Checker and Sun Thread Analyzer" 2007
18 Audenaert,K, "Clock Trees: Logical Clocks for Programs with Nested Parallelism" IEEE 23 (23): 646-658, 1997
19 Dinning, A, "An Empirical Comparison of Monitoring Algorithms for Access Anomaly Detection" ACM 1-10, 1990
20 Kim, Y, "An Empirical Analysis of Intel Thread Checker for Detecting Races in OpenMP Programs" IEEE 409-414, 2008
21 Park,S., "A Comparison of Scalable Labeling Schemes for Detecting Races in OpenMP Programs" Springer-Verlag 2104 : 68-80, 2001
상호연결망 폴디드 하이퍼-스타 연결망 FHS(2n,n)의 고장 지름
저상굴절버스의 전 차륜 조향 시스템 ECU 개발에 대한 연구
On a Logical Path Design for Optimizing Power-delay under a Fixed-delay Constraint
학술지 이력
연월일 | 이력구분 | 이력상세 | 등재구분 |
---|---|---|---|
2027 | 평가예정 | 재인증평가 신청대상 (재인증) | |
2021-01-01 | 평가 | 등재학술지 유지 (재인증) | ![]() |
2018-01-01 | 평가 | 등재학술지 유지 (등재유지) | ![]() |
2015-01-01 | 평가 | 등재학술지 유지 (등재유지) | ![]() |
2012-10-31 | 학술지명변경 | 한글명 : 컴퓨터 및 통신시스템 -> 정보처리학회논문지. 컴퓨터 및 통신시스템 | ![]() |
2012-10-10 | 학술지명변경 | 한글명 : 정보처리학회논문지A -> 컴퓨터 및 통신시스템외국어명 : The KIPS Transactions Part : A -> KIPS Transactions on Computer and Communication Systems | ![]() |
2010-01-01 | 평가 | 등재학술지 유지 (등재유지) | ![]() |
2009-03-04 | 학술지명변경 | 한글명 : 정보처리학회논문지 A, B, C, D -> 정보처리학회논문지 A외국어명 : The KIPS Transactions Part : A, B, C, D -> The KIPS Transactions Part : A | ![]() |
2009-03-04 | 학술지명변경 | 한글명 : 정보처리학회논문지 A -> 정보처리학회논문지A | ![]() |
2008-01-01 | 평가 | 등재학술지 유지 (등재유지) | ![]() |
2006-01-01 | 평가 | 등재학술지 유지 (등재유지) | ![]() |
2003-01-01 | 평가 | 등재학술지 선정 (등재후보2차) | ![]() |
2002-01-01 | 평가 | 등재후보 1차 PASS (등재후보1차) | ![]() |
2000-07-01 | 평가 | 등재후보학술지 선정 (신규평가) | ![]() |
학술지 인용정보
기준연도 | WOS-KCI 통합IF(2년) | KCIF(2년) | KCIF(3년) |
---|---|---|---|
2016 | 0.16 | 0.16 | 0.14 |
KCIF(4년) | KCIF(5년) | 중심성지수(3년) | 즉시성지수 |
0.12 | 0.11 | 0.315 | 0.07 |