DBPIA-NURIMEDIA
|
|
- 슬옹 황
- 6 years ago
- Views:
Transcription
1 논문 13-38A 한국통신학회논문지 (J-KICS) '13-12 Vol.38A No Way 캐쉬의선택된 를이용한향상된동적분기예측기구현 황인성, 황선영 An Improved Dynamic Branch Predictor by Selective Access of a Specific in 4-Way Cache In-sung Hwang, Sun-young Hwang 요 약 본논문은 4-Way 캐쉬의선택된 element만을사용하여어플리케이션수행사이클을줄인향상된동적분기예측기를제안한다. 제안된동적분기예측기는분기명령어가페치되면 MRU 버퍼를참조하여 4-Way 캐쉬의선택된 element에서타깃주소를얻으므로, 모든 element에접근하는기존의동적분기예측기보다제한된전력하에서 BTAC entry 수를증가시킬수있어분기예측성공률과어플리케이션의수행속도가상당히향상된다. 제안된동적분기예측기의효율성을 SMDL 시스템에의해생성된코어가벤치마크어플리케이션을수행하여검증한다. 실험결과동적분기예측기가없는코어에비해생성된코어의어플리케이션수행사이클은평균 10.1% 감소하고어플리케이션의전력소모는 7.4% 증가한다. 기존동적분기예측기를사용하는코어에비해수행사이클은평균 4.1% 줄어든다. Key Words : Embedded System, Branch Prediction, MRU Buffer, BTAC, MDL ABSTRACT This paper proposes an improved branch that reduces the number execution cycles of applications by selectively accessing a specific element in 4-way associative cache. When a branch instruction is fetched, the proposed branch acquires a branch target address from the selected element in the cache by referring to MRU buffer. Branch prediction rate and application execution speed are considerably improved by increasing the number of BTAC entries in restricted power condition, when compared with that of previous branch which accesses all elements. The effectiveness of the proposed dynamic branch is verified by executing benchmark applications on the core simulator. Experimental results show that number of execution cycles decreases by an average of 10.1%, while power consumption increases an average of 7.4%, when compared to that of a core without a dynamic branch. Execution cycles are reduced by 4.1% in comparison with a core which employs previous dynamic branch. Ⅰ. 서론최근스마트폰시장이확대되고스마트기술이발달함에따라기존임베디드프로세서보다깊은 본연구는삼성전자 ( 주 ) 의지원으로수행되었으며 IDEC 에서제공한 CAD tool 을이용해 simulation 을수행하였습니다. First Author: 서강대학교전자공학과 CAD & ES 연구실, insung78@sogang.ac.kr, 학생회원 Corresponding Author: 서강대학교전자공학과 CAD & ES 연구실, hwang@sogang.ac.kr, 종신회원논문번호 :KICS , 접수일자 :2013 년 11 월 21 일, 심사일자 :2013 년 12 월 4 일, 최종논문접수일자 :2013 년 12 월 9 일 1094
2 논문 / 4-Way 캐쉬의선택된 를이용한향상된동적분기예측기구현 파이프라인으로구성된고사양임베디드코어에대한수요가증가하고있다 [1,2]. 파이프라인이깊어질수록분기명령의페널티로인해지연되는시간이길어지므로분기명령의페널티를줄여야한다. 분기의 taken 여부를결정하고다음타깃주소를결정하기까지걸리는시간이분기명령 hazards에의한페널티가된다. 분기명령의페널티감소와코어성능향상을위해분기예측이사용되며 [3], 정적인방법과동적인방법으로나뉜다. 정적분기예측은어플리케이션수행이전에컴파일러로분기를예측하는방법으로일관되게분기의결과를 taken 혹은 not-taken으로결정하거나미리결정해놓은테이블의값을사용한다 [4]. 어플리케이션수행전에분기결과가결정되므로추가적인하드웨어가필요없다는장점이있으나분기예측성공률이낮고, 어플리케이션의분기특성이나분기명령의정보를반영해야분기예측의효율을높일수있다는단점이있다 [5,6]. 동적분기예측은기존의분기정보를활용하여런타임에분기를예측하므로정적분기예측보다예측률이높으나추가적인하드웨어자원이필요하다는단점이있다. 대표적인동적분기예측방식으로 bimodal, tournament, Gshare가제안되었다 [3]. Bimodal은최근의분기결과를 BHT (Branch History Table) 에저장하고그결과에따라다음분기결과를예측하는방식이다. 간단하고추가되는하드웨어도작으나분기예측률이낮다. Tournament 방식은 global 분기와 local 분기를각각고려하여분기예측률이높으나예측이성공해도모든페널티의제거가불가능하다. Gshare 방식은분기명령이 taken 될경우의타깃주소를 BTAC (Branch Target Address Cache) 에미리저장하여예측성공상황의분기명령페널티를제거한다. 분기예측정확도가높고타깃주소를저장함으로써분기명령페널티를대부분제거하나대용량의 BTAC와 BHT가필요하다 [7]. 기존의분기예측기는대부분범용프로세서를기준으로설계되므로전력소모가많고분기의예측률을높이기위해노력하였다 [8-11]. 임베디드프로세서는범용프로세서와는다르게소모전력의제한이있으므로제한된전력하에서어플리케이션수행사이클을감소시킬수있는동적분기예측기가필요하다. 본논문은 4-Way BTAC에 MRU (Most Recently Used) 버퍼를사용하여 element를선택적으로동작시켜제한된전력하에서어플리케이션수행사이클을효과적으로감소시킬수있는향상된동적분기예측기를 제안한다. 논문의구성은다음과같다. 2절에서연구의배경이되는기존의 Gshare 동적분기예측기를설명하고임베디드코어에적합한분기예측기의구현을위해분기명령특성을분석하는과정을기술한다. 또한동적분기예측기가구현된시스템의 platform에대해설명한다. 3절에서는합리적인 BTAC entry 수를찾는과정과동적분기예측기의성능향상을위해사용되는 MRU 버퍼의구조와크기를결정하는과정을기술한다. 또한제안된동적분기예측기의전체구조에대해설명한다. 4절에서는제안된동적분기예측기가포함된코어가구현된 platform에대해설명하고, 생성된코어의성능측정을위한벤치마크어플리케이션수행결과를보인다. 측정된어플리케이션수행사이클과소모전력및면적을동적분기예측기가포함되지않은코어와, Gshare 분기예측기가포함된코어, 제안된분기예측기가포함된코어에서비교한다. 5 장에서는결론및추후과제를제시한다. Ⅱ. 연구배경본절에서는 Gshare 분기예측기관련기존연구를소개하고임베디드코어에적합한동적분기예측기를구현하기위한분기특성을분석하여기술한다 Gshare 분기예측기 Gshare 분기예측기는 GHR (Global History Register) 과 BHT, BTAC로구성된다. 분기명령이수행되면최근분기들의 taken 경향이저장된 GHR 과프로그램카운터를 xor하여 BHT의주소로사용한다. BHT에는주소에따른 taken 여부가저장되어있어분기명령이 taken 될지혹은 not-taken 될지를이후전부결정한다. 분기명령으로인해생기는페널티를모두제거가능한 Gshare 분기예측기는대용량의 BHT와 BTAC를사용하여기존의동적분기예측기보다분기예측률이높다 [12]. Gshare 분기예측기는 BTAC의 entry 수가 256개일때 89% 의확률로분기를예측하며 entry가증가함에따라예측률은거의 100% 에이른다 [13]. Gshare 분기예측기를개선하기위해 R. Sendag는 Branch BMP (Misprediction Predictor) 를두어 conflict 상황을제거하였고 [8], Y. Maa는 BTAC의주소를 Hedging하여접근하였다 [9]. T. Chen은 2단으로구성된분기 1095
3 한국통신학회논문지 (J-KICS) '13-12 Vol.38A No.12 예측기를사용하였다. 이런방법들은 Gshare 분기예측기의예측률을높이는데치중하여전력소모가크므로, 제한된전력하에서분기예측률이높은동적분기예측기가필요하다 [10]. 2. 분기특성연구제한된전력하에서동적분기예측기의분기예측률을높이기위해어플리케이션의분기특성을분석한다. 루프명령은분기명령의 56% 를차지하나루프문의종류가평균 5개로적어주로사용되는루프명령이높은비율로반복된다 [3,14]. 또한어플리케이션의명령어중 84% 가루프내부에위치하므로루프가아닌분기명령은루프내부에서주로수행된다. 전체루프의평균 76.0% 가단일루프이고, 루프로건너뛰는인스트럭션은 100개미만인경우가많아한루프내의분기명령이반복적으로사용된다 [15]. 따라서분기명령은 temporal locality가높으며, 분기명령의높은 temporal locality를활용함으로써동적분기예측기의분기예측률을증대시킬수있다. Ⅲ. 제안된동적분기예측기본절에서는제안된임베디드프로세서용동적분기예측기를제시한다. 먼저최대의효율을내는 BTAC entry 수를결정하는과정을보이고, 전력소모를줄이기위해동적분기예측기안에포함된 MRU 버퍼의구조와합리적인 MRU 버퍼 entry 수를정하는방법을제시한다. 또한 BTAC와 MRU 버퍼가포함된전체동적분기예측기의구조를보이고그동작을설명한다 BTAC entry 수결정제안된동적분기예측기의 BTAC entry 수가많을수록분기예측률이높으나전력소모가많고면적이크다. 임베디드프로세서는제한된조건에서최적의성능을내야하므로합리적인 BTAC entry 수를결정하기위해 BTAC entry 수를변경하며평균분기예측률을측정한다. 분기예측확률이어플리케이션수행속도에미치는영향을알기위해벤치마크어플리케이션의분기명령비율과분기명령어의 CPI를이용하여벤치마크어플리케이션의평균 CPI를계산한다 [16,17]. 그림 1. (a) 는 BTAC entry 수에따른분기예측률을보이며, 그림 1. (b) 는분기명령의비율이 10% 인어플리케이션의 BTAC (a) (b) 그림 1. BTAC entry 수에따른분기예측률과 CPI. (a) 분기예측률 (b) CPI. Fig. 1. Branch hit rate and CPI vs. number of BTAC entry. (a) Branch hit rate (b) CPI. entry 수에따른평균 CPI의변화를계산한결과를보인다. BTAC entry 수가 64일때분기예측률은 75%, 평균 CPI는 1.23이다. entry 수가 64보다적으면예측률과 CPI가크게변하나반대경우는분기예측률의변화폭이높지않고 CPI 변화도작다. 임베디드프로세서는파이프라인이얕아예측실패에대한페널티가작고, 면적이작아야유리하므로 BTAC entry 수를 64로정하는것이합리적이다 MRU 버퍼동적분기예측기의동적전력소모감소를위해 MRU 버퍼를추가한다. 제안된동적분기예측기는 MRU 버퍼를참조하여타깃주소가저장되어있는 BTAC의 element를선택적으로동작시킨다. 동적전력소모가줄어 BTAC entry 수를증가시킬수있어제한된전력하에서 Gshare 분기예측기에비해분기예측률이높다. Temporal locality가높은분기의특성에활용하고 MRU 버퍼추가에의한페널티를최소화하기위해 MRU 버퍼 entry 수를줄이고비교기를추가하였다. 1096
4 논문 / 4-Way 캐쉬의선택된 를이용한향상된동적분기예측기구현 MRU 버퍼구조그림 2는제안된 MRU 버퍼구조를나타낸다. 기존의 MRU 버퍼는주로데이터캐쉬의 element 를예측하므로 entry 수가많고예측을수행하는데 1사이클이소모된다 [18,19]. 분기명령은종류가적고 temporal locality가커 MRU 버퍼 entry의수가적어도 element 예측률이높다. MRU 버퍼 entry 수를줄이고기존의 direct-mapped 구조대신각각의 entry에비교기를포함하여예측수행시간을최소화한다. 분기명령이수행되면각 entry의태그와분기명령의태그를비교하여타깃주소가저장된 BTAC element를예측한다. 예측에성공하면 MUX에예측된 element가출력되며 element hit는 1을출력한다. 예측에실패하면 element hit는 0을출력하고 NRU (Not Recently Used) 알고리즘을적용하여선택된 MRU 버퍼 entry를갱신한다 [20]. (a) MRU 버퍼의크기결정기존의 BTAC에 MRU 버퍼를추가하므로 MRU 버퍼의면적이동적분기예측기의페널티로작용한다. 페널티를최소화하기위해 MRU 버퍼 entry 수를변경해가며 MiBench 어플리케이션을반복적으로수행하여 element 예측률과 BTAC 전력소모율을측정한다. 그림3. (a) 는 MRU 버퍼 entry 수에따른평균예측률변화이며, 그림 3. (b) 는 BTAC의전력소모율이다. 분기명령의종류가적고 temporal locality가크므로, entry 수가 1 ~ 4까지증가하는구간에서 element 예측률이급격하게증가하고 (b) 그림 3. MRU 버퍼 entry 수에따른 element 예측확률과 BTAC 평균전력소모. (a) 예측률 (b) BTAC 전력소모율. Fig. 3. hit rate and BTAC power consumption vs. Number of MRU buffer entries. (a) hit rate (b) BTAC power consumption. 전력소모도크게감소한다. MRU 버퍼 entry 수가 4인지점부터예측률의증가율이줄어들고전력감소율도 73% 에수렴한다. 따라서 entry가 4보다커지면 element 예측률향상에서얻는이점보다 entry 수의증가로인한페널티가더커지므로 MRU 버퍼 entry 수는 4로고정한다. Update Instruction 제안된동적분기예측기구조임베디드코어용동적분기예측기는제한된전 Tag RC 력하에서예측률이높아야한다. 임베디드코어는 범용코어에비해예측률이낮아도상대적으로페 Tag RC 널티가낮고, 전력소모와면적이치명적인제한조건이므로 BTAC의크기를 64로, MRU 버퍼 entry의 Tag RC 수를 4로정한다. 동적분기예측기의예측률을높이기위해 4-Way 캐쉬를사용한다. 4-Way 캐쉬는 direct-mapped 방식의캐쉬에비해동적전력소모가 Tag RC 크므로 BTAC 내부에 MRU 버퍼를추가하여 BTAC 의동적전력소모를줄인다 [18,19]. MRU 버퍼 Select MUX 에저장된최근분기명령의태그와 element 를사용 그림 2. MRU 버퍼구조. Fig. 2. Construction of MRU buffer. Hit 하면분기명령을수행할때 BTAC의모든 element 에접근하지않고지정된 element에만접근하여 BTAC의동적전력소모를줄인다. 1097
5 한국통신학회논문지 (J-KICS) '13-12 Vol.38A No 구현 platform SMDL (Sogang Machine Description Language) 시스템은 time-to-market요구가증대함에따라설계물의재사용률을높이기위한 MDL (Machine Description Language) 기반의 ASIP 설계자동화시스템의한종류로다중사이클인스트럭션을지원해기존의시스템보다메모리사용이효율적이다 [21,22]. SMDL 시스템은 SMDL 문법으로기술된문 그림 4. MRU 버퍼가추가된제안된동적분기예측기구조. Fig. 4. Construction of proposed branch with MRU buffer. 그림 4는 MRU 버퍼가추가된제안된동적분기예측기의전체구조를나타낸다. 분기명령이페치되면분기예측기록이저장된 GBHR과프로그램카운터를 xor 연산하여 BHT에접근한다. BHT 출력결과가 taken 이면 global prediction result가 1이되고, MRU 버퍼를참조하여타깃주소가저장된 BTAC element를예측한다. 예측에성공하면 MRU 버퍼에서 1과타깃주소가저장된 element의위치가출력된다. BTAC는출력된결과를받아예측된 element만동작시켜타깃주소를출력한다. 예측에실패하면 element hit가 0이되고 BTAC의모든 element에접근해야다음프로그램카운터로사용할타깃주소가출력된다. 만약 BTAC에타깃주소가없거나 BHT 출력결과가 not-taken 이면다음프로그램카운터는정상적으로증가시킨다. Ⅳ. 실험결과 본절에서는제안된동적분기예측기의검증을위해동적분기예측기가포함된코어가구현된 platform을기술하고동적분기예측기가포함되지않은코어와 Gshare 분기예측기가포함된코어, 제안된동적분기예측기가포함된코어에서 Mibench 어플리케이션수행사이클과소모전력을비교하였다. 서를중간형태로변환하여 retargetable 컴파일러의입력으로사용한다. retargetable 컴파일러는 C 언어로기술된어플리케이션을추가적으로입력받아어플리케이션의이진코드를생성하며, 임베디드코어생성기는중간형태를기반으로타깃코어의 HDL 코드를생성하고, retargetable 인스트럭션셋시뮬레이터생성기는인스트럭션셋시뮬레이터를생성한다. 생성된시뮬레이터를사용하여임베디드코어생성기에의해생성된코어와컴파일러에서출력된이진코드를검증한다 [23,24]. 제안된동적분기예측기의성능평가를위해상용화된임베디드코어중 ARM9 코어모델을타깃코어로정하여구현하였다 [16,25,26]. TSMC 90nm 라이브러리를기반으로생성된코어는 Synopsys사의 Design Vision을이용하여합성된후 SUN-Sparc 워크스테이션에서수행되었다. 또한 100MHz의주파수로동작하고 5단파이프라인으로구성되며, 2-phase non-overlapping clock을사용한다. 동작온도는 25, 동작전압은 3.3V이다 실험결과표 1은동적분기예측기가없는코어와제안된동적분기예측기가포함된코어의어플리케이션수행소모전력비교결과이다. 동적분기예측기가포함되므로어플리케이션수행전력소모량이평균 7.4% 증가한다. 제안된동적분기예측기는 BTAC 의특정 element만을참조하여분기예측에필요한동적전력소모를줄이므로분기명령의비율과특정 element를참조하는비율이높을수록전력소모량증가비율이작다. 어플리케이션수행사이클비교를위해전력소모를제한하여 Gshare 분기예측기의 BHT와 BTAC의크기를결정하고 Gshare 분기예측기가포함된코어를생성한다. 제안된동적분기예측기는 BTAC의특정 element를선택하여접근하므로동적전력소모가줄어들어제한된전력하에서 BTAC의 entry 수가 Gshare 분기예측기 1098
6 논문 / 4-Way 캐쉬의선택된 를이용한향상된동적분기예측기구현 표 1. 벤치마크어플리케이션전력소모비교결과 Table 1. Comparison results of benchmark applications power consumption MiBench Branch ratio hit rate withou t dynam ic branch (mw) with proposed dynam ic branch (mw) Comparison tiff2rgba tiffmedian blowfish bitcount ADPCM enc CRC FFT IFFT ADPCM dec GSM enc GSM dec stringsearc h ispell 평균 에비해많아분기예측률이높다. 표 2는동적분기예측기가없는코어와 Gshare 분기예측기가포함된코어및제안된동적분기예측기가포함된코어의어플리케이션수행사이클의비교결과이다. 어플리케이션수행사이클은동적분기예측기를사용하지않았을때보다 Ghare 분기예측기가포함된코어의경우평균 6.3%, 제안된동적분기예측기를사용한경우평균 10.1% 감소한다. 제안된동적분기예측기가포함된코어는같은전력을사용하는 Gshare 분기예측기가포함된코어와비교하여어플리케이션평균수행사이클이 4.1% 감소한다. 동적분기예측기는분기명령의페널티를줄이므로분기비율이높을수록코어의수행속도를향상시킨다. 임베디드프로세서에알맞은구조를위해 BTAC가합리적인 entry를갖도록했고, 효율적인 element 예측률을갖도록 MRU 버퍼 entry 수를결정하여면적증가를최소화하였다. 기존의타깃프로세서는 826,223 게이트로구성된다. 전력소모가제한된 Gshare 분기예측기는 5,045 게이트이므로 Gshare 분기예측기를포함한임베디드프로세서는총 831,268 게이트로구성된다. MRU 버퍼는 311 게이트이고, Gshare와같은전력을소모할때제안된동적분기예측기는 BTAC의크기를키워 8,257 게이트로구성된다. 제안된동적분기예측기가포 함된코어는총 834,480 게이트이다. 임베디드프로세서의특성에맞게 MRU 버퍼와 BTAC entry 수 표 2. 벤치마크어플리케이션수행사이클비교결과 Table2. Comparison results of benchmark applications executing cycle Mi- Bench Bran - ch ratio Without dynamic branch # of cycles tiff2rgba ,533,494 tiffmedian ,556,378 blowfish ,481,371 bitcount ,814,263 ADPCM enc ,469,368 CRC ,959,980 FFT ,465,566 IFFT ,339,095 ADPCM dec ,905,353 GSM enc ,718,535 GSM dec ,809,463 stringsea rch ,489 ispell ,724,094 평균 Gshare dynamic branch # of cycles /comparison 45,436,110 / ,577,992 / ,680,690 / ,209,757 / ,349,914 / ,683,926 / ,308,334 / ,069,757 / ,548,189 / ,576,052 / ,725,754 / ,932 / ,389,346 / / -6.3 Proposed dynamic branch # of cycles /comparison 44,777,680 / ,990,960 / ,200,282 / ,447,054 / ,678,242 / ,318,294 / ,613,995 / ,708,153 / ,733,891 / ,290,563 / ,475,529 / ,398 / ,588,498 / / Comparison with Gshare dynamic branch 를최소화하여제안된분기예측기가포함된코어는분기예측기가포함되지않은코어에비해면적이 1% 미만증가하였다. Ⅴ. 결론및추후과제 분기명령의페널티를모두제거하는기존의 Gshare 분기예측기는분기예측률이높으나대용량의 BTAC와 BHT가필요하여전력소모가크다는단점이있다. 본논문은분기의특성을분석하여동적분기예측기내부의 BTAC의크기를줄이고적은 entry 수를갖는 MRU 버퍼를추가하여제한된전력하에서분기예측률이높은동적분기예측기를제안한다. 제안된동적분기예측기는 MRU 버퍼를참조하여타깃주소가저장된 BTAC element 1099
7 한국통신학회논문지 (J-KICS) '13-12 Vol.38A No.12 를선택하여동작시키므로 BTAC의동적전력소모를줄여같은전력을사용하는기존의분기예측기보다분기예측률이높다. 제안된분기예측기가포함된 ARM9코어를기반으로벤치마크어플리케이션을수행하여분기예측기의효율성을검증한결과동적분기예측기를포함하지않은코어에비해어플리케이션수행사이클이평균 10.1% 감소하고전력소모가평균 7.4% 증가하였다. 같은전력을소모하는 Gshare 분기예측기가포함된코어와비교하면어플리케이션의수행사이클이평균 4.1% 감소하였다. 추후어플리케이션분기특성을기반으로 MRU 버퍼 entry의수와 BTAC의크기를변경하여동적분기예측기의효율을높여분기예측확률을높이고전력소모를줄여야한다. 또한파이프라인이깊을수록분기명령의페널티가증가하므로파이프라인에따라다른구조를갖는분기예측기에대한추가연구가필요하다. References [1] T. Juan, S. Sanjeevan, and J. Navarro, Dynamic history-length fitting : A third level of adaptivity for branch prediction, in Proc. Comput. Architecture, pp , Barcelona, Spain, July [2] J. Lee and A. Smith, Branch prediction strategies and branch target buffer design, Computer, vol. 17, no. 1, pp. 6-22, Jan [3] J. Hennessy and D. Patterson, Computer Architecture: A Quantitative Approach, Morgan Kaufmann Publishers, [4] T. Ball and J. Laurs, Branch prediction for free, in Proc. ACM SIGPLAN Conf. Programming Language Design Implementation, pp , New York, U.S.A., Aug [5] J. Patterson, Accurate static branch prediction by value range propagation, in Proc. ACM SIGPLAN Conf. Programming Language Design Implementation, pp , New York, U.S.A., June [6] B. Calder, D. Grunwald, M. Jones, D. Lindsay, J. Martin, M. Mozer, and B. Zorn, Evidence-based static branch prediction using machine learning, ACM Trans. Programming Languages Syst., vol. 19, no. 1, pp. 1-43, Sep [7] C. Cheng, The Schemes and Performances of Dynamic Branch Predictors, Technical Report, Berkeley Wireless Research Center, [8] R. Sendag, J. Yi, P. Chuang, and D. Lilja, Low power/area branch prediction using complementary branch s, in Proc. IEEE Int. Parallel Distributed Process. Symp., pp. 1-12, Miami, U.S.A., Apr [9] Y. Maa, M. Yen, S. Kuo, and G. Lee, Cost-effective branch prediction by combining hedging and filtering, in Proc Int. Comput. Symp., pp , Tainan, Taiwan, Dec [10] T. Chen, P. Pan, G. Jiang, and M. Ye, Record branch prediction : An optimized scheme for two-level branch s, in Proc. IEEE 14th Int. Conf. High Performance Comput. Commun., pp , Liverpool, U.K., June [11] D. Parikh, K. Skadron, Y. Zhang, and M. Stan, Power-aware branch prediction: Characterization and design, IEEE Trans. Comput., vol. 53, no. 2, pp , Feb [12] L. Nadav and W. Shlomo, Low power branch prediction for embedded application processors, in Proc. Low Power Electron. Design, pp , Austin, U.S.A., Aug [13] S. McFarling, Combining branch s, Technical Report, Western Research Laboratory, Dec [14] Y. Ding and W. Zhang, Loop-based instruction prefetching to reduce the worst-case execution time, IEEE Trans. Comput., vol. 59, no. 6, pp , June [15] M. Kobayashi, Dynamic characteristics of loops, IEEE Trans. Comput., vol. 33, no. 2, pp , Feb [16] S. Segars, The ARM9 family High performance microprocessors for embedded applications, in Proc. Int. Conf. Comput. Design, pp , Austin, U.S.A., Oct. 1100
8 논문 / 4-Way 캐쉬의선택된 를이용한향상된동적분기예측기구현 [17 M. Guthaus, J. Ringenberg, D. Ernst, T. Austin, T. Mudge, and R. Brown, "MiBench: A free, commercially representative embedded benchmark suite," in Proc. IEEE Int. Workshops Workload Characterization, pp. 3-14, Austin, U.S.A., Dec [18] K. Inoue, T. Ishihara, and K. Murakami, Way-predicting set-associative cache for high performance and low energy consumption, in Proc. Int. Symp. Low Power Electron. Design, pp , San Diego, U.S.A., Aug [19] M. Calagos and Y. Chu, Hybrid scheme for low-power set associative caches, Electron. Lett., vol. 48, no. 14, pp , July [20] K. Kedzierski, M. Moreto, F. Cazorla, and M. Valero, Adapting cache partitioning algorithms to pseudo-lru replacement policies, in Proc. Parallel Distributed Process, pp. 1-12, Atlanta, U.S.A., Apr [21] N. Dutt and K. Choi, Configurable processor for embedded computing, IEEE Comput., vol. 36, no. 1, pp , Jan [22] K. Choi and Y. Cho, Recent trends in the SoC design methodology, Inst. Electron. Eng. Korea (IEEK) Mag., vol. 30, no. 9, pp , Sep [23] H. Lee and S. Hwang, Design of a high-level synthesis system for automatic generation of pipelined datapath, J. Inst. Electron. Eng. Korea (IEEK), vol. 31-A, no. 4, pp , Mar [24] J. Cho, Y. Yoo, and S. Hwang, Construction of an automatic generation system of embedded processor cores, J. Korean Inst. Commun. Inform. Sci, (KICS), vol. 30, no. 6A, pp , June [25] ARM, ARM922T Technical Reference Manual (rev 0), [26] ARM, ARM Architecture Reference Manual (rev 0), 황인성 (In-sung Hwang) 2012년 2월서강대학교전자공학과졸업 2012년~현재서강대학교전자공학과 CAD & ES 연구실석사과정 < 관심분야 > Embedded System Design, ASIP Design 황선영 (Sun-young Hwang) 1976년 2월서울대학교전자공학과학사 1978년 2월한국과학원전기및전자공학과공학석사 1986년 10월미국 Stanford 대학전자공학박사 1976~1981년삼성반도체 ( 주 ) 연구원, 팀장 1986~1989년 Stanford 대학 Center for Intergrated System 연구소책임연구원및 Fairchild Semiconductor Palo Alto Research Center 기술자문 1989~1992년삼성전자 ( 주 ) 반도체기술자문 1989년 3월~현재서강대학교전자공학과교수 < 관심분야 > SoC 설계및 framework 구성, CAD 시스템, Embedded System 설계, Computer Architecture 및 DSP System Design 등 1101
DBPIA-NURIMEDIA
논문 13-38B-01-02 한국통신학회논문지 '13-01 Vol.38B No.01 http://dx.doi.org/10.7840/kics.2013.38b.1.10 동적분기예측을지원하는임베디드코어자동생성시스템의설계와구현 이현철, 황선영 Design and Implementation of an Automatic Embedded Core Generation System
More information09권오설_ok.hwp
(JBE Vol. 19, No. 5, September 2014) (Regular Paper) 19 5, 2014 9 (JBE Vol. 19, No. 5, September 2014) http://dx.doi.org/10.5909/jbe.2014.19.5.656 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a) Reduction
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 10, Oct ,,. 0.5 %.., cm mm FR4 (ε r =4.4)
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Oct.; 29(10), 799 804. http://dx.doi.org/10.5515/kjkiees.2018.29.10.799 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Method
More informationDBPIA-NURIMEDIA
논문 10-35-03-03 한국통신학회논문지 '10-03 Vol. 35 No. 3 원활한 채널 변경을 지원하는 효율적인 IPTV 채널 관리 알고리즘 준회원 주 현 철*, 정회원 송 황 준* Effective IPTV Channel Control Algorithm Supporting Smooth Channel Zapping HyunChul Joo* Associate
More information¼º¿øÁø Ãâ·Â-1
Bandwidth Efficiency Analysis for Cooperative Transmission Methods of Downlink Signals using Distributed Antennas In this paper, the performance of cooperative transmission methods for downlink transmission
More informationⅡ. Embedded GPU 모바일 프로세서의 발전방향은 저전력 고성능 컴퓨팅이다. 이 러한 목표를 달성하기 위해서 모바일 프로세서 기술은 멀티코 어 형태로 발전해 가고 있다. 예를 들어 NVIDIA의 최신 응용프 로세서인 Tegra3의 경우 쿼드코어 ARM Corte
스마트폰을 위한 A/V 신호처리기술 편집위원 : 김홍국 (광주과학기술원) 스마트폰에서의 영상처리를 위한 GPU 활용 박인규, 최호열 인하대학교 요 약 본 기고에서는 최근 스마트폰에서 요구되는 다양한 멀티미 디어 어플리케이션을 embedded GPU(Graphics Processing Unit)를 이용하여 고속 병렬처리하기 위한 GPGPU (General- Purpose
More informationÀ±½Â¿í Ãâ·Â
Representation, Encoding and Intermediate View Interpolation Methods for Multi-view Video Using Layered Depth Images The multi-view video is a collection of multiple videos, capturing the same scene at
More informationMicrosoft PowerPoint - 30.ppt [호환 모드]
이중포트메모리의실제적인고장을고려한 Programmable Memory BIST 2010. 06. 29. 연세대학교전기전자공학과박영규, 박재석, 한태우, 강성호 hipyk@soc.yonsei.ac.kr Contents Introduction Proposed Programmable Memory BIST(PMBIST) Algorithm Instruction PMBIST
More informationPowerPoint 프레젠테이션
Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 29, no. 6, Jun Rate). STAP(Space-Time Adaptive Processing)., -
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Jun.; 29(6), 457463. http://dx.doi.org/10.5515/kjkiees.2018.29.6.457 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Sigma-Delta
More information6.24-9년 6월
리눅스 환경에서Solid-State Disk 성능 최적화를 위한 디스크 입출력요구 변환 계층 김태웅 류준길 박찬익 Taewoong Kim Junkil Ryu Chanik Park 포항공과대학교 컴퓨터공학과 {ehoto, lancer, cipark}@postech.ac.kr 요약 SSD(Solid-State Disk)는 여러 개의 낸드 플래시 메모리들로 구성된
More information(JBE Vol. 21, No. 1, January 2016) (Regular Paper) 21 1, (JBE Vol. 21, No. 1, January 2016) ISSN 228
(JBE Vol. 1, No. 1, January 016) (Regular Paper) 1 1, 016 1 (JBE Vol. 1, No. 1, January 016) http://dx.doi.org/10.5909/jbe.016.1.1.60 ISSN 87-9137 (Online) ISSN 16-7953 (Print) a), a) An Efficient Method
More information2 : (JEM) QTBT (Yong-Uk Yoon et al.: A Fast Decision Method of Quadtree plus Binary Tree (QTBT) Depth in JEM) (Special Paper) 22 5, (JBE Vol. 2
(Special Paper) 22 5, 2017 9 (JBE Vol. 22, No. 5, Sepember 2017) https://doi.org/10.5909/jbe.2017.22.5.541 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) (JEM) a), a), a) A Fast Decision Method of Quadtree
More information°í¼®ÁÖ Ãâ·Â
Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of
More informationDBPIA-NURIMEDIA
The e-business Studies Volume 17, Number 6, December, 30, 2016:275~289 Received: 2016/12/02, Accepted: 2016/12/22 Revised: 2016/12/20, Published: 2016/12/30 [ABSTRACT] SNS is used in various fields. Although
More informationDBPIA-NURIMEDIA
논문 11-36-01-09 임베디드코어설계시효율적인설계공간탐색을위한컴파일드코드방식시뮬레이터생성시스템구축 준회원김상우 *, 정회원황선영 * Construction of a Compiled-code Simulator Generation System for Efficient Design Exploration in Embedded Core Design Sang-Woo
More information<31325FB1E8B0E6BCBA2E687770>
88 / 한국전산유체공학회지 제15권, 제1호, pp.88-94, 2010. 3 관내 유동 해석을 위한 웹기반 자바 프로그램 개발 김 경 성, 1 박 종 천 *2 DEVELOPMENT OF WEB-BASED JAVA PROGRAM FOR NUMERICAL ANALYSIS OF PIPE FLOW K.S. Kim 1 and J.C. Park *2 In general,
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Nov.; 26(11),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Nov.; 26(11), 985991. http://dx.doi.org/10.5515/kjkiees.2015.26.11.985 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Analysis
More information878 Yu Kim, Dongjae Kim 지막 용량수준까지도 멈춤 규칙이 만족되지 않아 시행이 종료되지 않는 경우에는 MTD의 추정이 불가 능하다는 단점이 있다. 최근 이 SM방법의 단점을 보완하기 위해 O Quigley 등 (1990)이 제안한 CRM(Continu
한 국 통 계 학 회 논 문 집 2012, 19권, 6호, 877 884 DOI: http://dx.doi.org/10.5351/ckss.2012.19.6.877 Maximum Tolerated Dose Estimation Applied Biased Coin Design in a Phase Ⅰ Clinical Trial Yu Kim a, Dongjae Kim
More informationDBPIA-NURIMEDIA
논문 10-35-08-15 한국통신학회논문지 '10-08 Vol.35 No. 8 건설생산성 향상을 위한 건설현장 내 RFID 네트워크 시스템 적용 방안 준회원 김 신 구*, 정회원 이 충 희*, 이 성 형*, 종신회원 김 재 현* Method of RFID Network System Application for Improving of Construction
More information<35335FBCDBC7D1C1A42DB8E2B8AEBDBAC5CDC0C720C0FCB1E2C0FB20C6AFBCBA20BAD0BCAE2E687770>
Journal of the Korea Academia-Industrial cooperation Society Vol. 15, No. 2 pp. 1051-1058, 2014 http://dx.doi.org/10.5762/kais.2014.15.2.1051 멤리스터의 전기적 특성 분석을 위한 PSPICE 회로 해석 김부강 1, 박호종 2, 박용수 3, 송한정 1*
More informationDBPIA-NURIMEDIA
무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 901 무선 센서 네트워크 환경에서 링크 품질에 기반한 라우팅에 대한 효과적인 싱크홀 공격 탐지 기법 (A Effective Sinkhole Attack Detection Mechanism for LQI based Routing in WSN) 최병구 조응준 (Byung
More information<333820B1E8C8AFBFEB2D5A6967626565B8A620C0CCBFEBC7D120BDC7BFDC20C0A7C4A1C3DFC1A42E687770>
Journal of the Korea Academia-Industrial cooperation Society Vol. 13, No. 1 pp. 306-310, 2012 http://dx.doi.org/10.5762/kais.2012.13.1.306 Zigbee를 이용한 실외 위치추정 시스템 구현 김환용 1*, 임순자 1 1 원광대학교 전자공학과 Implementation
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Feb.; 29(2), IS
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2018 Feb.; 29(2), 93 98. http://dx.doi.org/10.5515/kjkiees.2018.29.2.93 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) UHF-HF
More information歯3일_.PDF
uuhm Daewoo Daily * 0.0% 23.6% 38.2% 50.0% 61.8% 100.0% 980 970 960 950 940 930 920 910 900 890 880 870 860 850 840 830 820 810 800 790 780 770 760 750 740 730 720 710 700 690 680 670 660 650 640 630
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jan.; 26(1),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Jan.; 26(1), 113118. http://dx.doi.org/10.5515/kjkiees.2015.26.1.113 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) A Retro-Directive
More informationRRH Class-J 5G [2].,. LTE 3G [3]. RRH, W-CDMA(Wideband Code Division Multiple Access), 3G, LTE. RRH RF, RF. 1 RRH, CPRI(Common Public Radio Interface)
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Mar.; 26(3), 276 282. http://dx.doi.org/10.5515/kjkiees.2015.26.3.276 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) RRH
More information14.531~539(08-037).fm
G Journal of the Korea Concrete Institute Vol. 20, No. 4, pp. 531~539, August, 2008 š x y w m š gj p { sƒ z 1) * 1) w w Evaluation of Flexural Strength for Normal and High Strength Concrete with Hooked
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 26, no. 3, Mar (NFC: non-foster Circuit).,. (non-foster match
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Mar.; 26(3), 283 291. http://dx.doi.org/10.5515/kjkiees.2015.26.3.283 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Negative
More information. 서론,, [1]., PLL.,., SiGe, CMOS SiGe CMOS [2],[3].,,. CMOS,.. 동적주파수분할기동작조건분석 3, Miller injection-locked, static. injection-locked static [4]., 1/n 그림
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Feb.; 27(2), 170175. http://dx.doi.org/10.5515/kjkiees.2016.27.2.170 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Analysis
More information<91E6308FCD5F96DA8E9F2E706466>
㓙 ࡐ ࡓ 㧢 㧝 ޓ ㅢ 㓙 ࡐ ࡓ 㓙 ࡐ ࡓ Si 8th Int. Conf. on Si Epitaxy and Hetero- structures (ICSI-8) & 6th Int. Symp. Control of Semiconductor Interfaces 25 6 2 6 5 250 Si 2 19 50 85 172 Si SiGeC Thin Solid Films
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jun.; 27(6),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Jun.; 27(6), 495 503. http://dx.doi.org/10.5515/kjkiees.2016.27.6.495 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Design
More informationDBPIA-NURIMEDIA
논문 07-32-10-15 한국통신학회논문지 '07-10 Vol. 32 No. 10 저전력소모임베디드프로세서코어자동생성시스템의설계 준회원김동원 *, 정회원황선영 * Design of an Automatic Generation System for Embedded Processor Cores with Minimal Power Consumption Dong-Won
More information저작자표시 - 비영리 - 변경금지 2.0 대한민국 이용자는아래의조건을따르는경우에한하여자유롭게 이저작물을복제, 배포, 전송, 전시, 공연및방송할수있습니다. 다음과같은조건을따라야합니다 : 저작자표시. 귀하는원저작자를표시하여야합니다. 비영리. 귀하는이저작물을영리목적으로이용할
저작자표시 - 비영리 - 변경금지 2.0 대한민국 이용자는아래의조건을따르는경우에한하여자유롭게 이저작물을복제, 배포, 전송, 전시, 공연및방송할수있습니다. 다음과같은조건을따라야합니다 : 저작자표시. 귀하는원저작자를표시하여야합니다. 비영리. 귀하는이저작물을영리목적으로이용할수없습니다. 변경금지. 귀하는이저작물을개작, 변형또는가공할수없습니다. 귀하는, 이저작물의재이용이나배포의경우,
More information09È«¼®¿µ5~152s
Korean Journal of Remote Sensing, Vol.23, No.2, 2007, pp.45~52 Measurement of Backscattering Coefficients of Rice Canopy Using a Ground Polarimetric Scatterometer System Suk-Young Hong*, Jin-Young Hong**,
More informationHigh Resolution Disparity Map Generation Using TOF Depth Camera In this paper, we propose a high-resolution disparity map generation method using a lo
High Resolution Disparity Map Generation Using TOF Depth Camera In this paper, we propose a high-resolution disparity map generation method using a low-resolution Time-Of- Flight (TOF) depth camera and
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Dec.; 27(12),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Dec.; 27(12), 1036 1043. http://dx.doi.org/10.5515/kjkiees.2016.27.12.1036 ISSN 1226-3133 (Print) ISSN 2288-226X (Online)
More information박선영무선충전-내지
2013 Wireless Charge and NFC Technology Trend and Market Analysis 05 13 19 29 35 45 55 63 67 06 07 08 09 10 11 14 15 16 17 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40
More information지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월
지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., 2004 5 2009 12 KOSPI200.,. * 2009. 지능정보연구제 16 권제 1 호 2010 년 3 월 김선웅 안현철 社 1), 28 1, 2009, 4. 1. 지능정보연구제 16 권제 1 호 2010 년 3 월 Support
More information10 이지훈KICS2015-03-068.hwp
논문 15-40-05-10 The Journal of Korean Institute of Communications and Information Sciences '15-05 Vol.40 No.05 http://dx.doi.org/10.7840/kics.2015.40.5.851 가로등 인프라를 활용한 안전한 스마트 방범 시스템 차 정 화, 이 주 용 *, 이
More informationDBPIA-NURIMEDIA
논문 10-35-12-02 한국통신학회논문지 '10-12 Vol.35 No.12 임베디드코어설계를위해설계계층을이용한효율적인 아키텍처탐색 준회원김상우 *, 정회원황선영 * An Efficient Architecture Exploration for Embedded Core Design Exploiting Design Hierarchy Sang-Woo Kim* Associate
More information책임연구기관
2009. 2. 책임연구기관 - i - - ii - - iii - - iv - 6.3.1 Sample Collection and Analysis 161 6.3.1.1 Sample Collection 161 6.3.1.2 Sample Analysis 161 6.3.2 Results 162 6.3.2.1 Dalian 162 6.3.2.2 Xiamen 163 6.3.3
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 27, no. 8, Aug [3]. ±90,.,,,, 5,,., 0.01, 0.016, 99 %... 선형간섭
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Aug.; 27(8), 693700. http://dx.doi.org/10.5515/kjkiees.2016.27.8.693 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Design
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Sep.; 30(9),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2019 Sep.; 30(9), 712 717. http://dx.doi.org/10.5515/kjkiees.2019.30.9.712 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) MOS
More information인문사회과학기술융합학회
Vol.5, No.5, October (2015), pp.471-479 http://dx.doi.org/10.14257/ajmahs.2015.10.50 스마트온실을 위한 가상 외부기상측정시스템 개발 한새론 1), 이재수 2), 홍영기 3), 김국환 4), 김성기 5), 김상철 6) Development of Virtual Ambient Weather Measurement
More information<313430333033C6AFC1FD28C3E0B1B8292E687770>
스포츠와 물리학: 구기운동 안티-싸커 와 간접-축구 DOI: 10.3938/PhiT.23.005 이 인 호 Anti-soccer and Indirect Soccer 편성은 없다고 장담한다. 벨기에(FIFA 랭킹 11위), 러시아 (FIFA 랭킹 22위), 알제리(FIFA 랭킹 26위), 그리고 한국(FIFA 랭킹 61위)으로 이어지는 H조 편성 결과이다. 이
More information45-51 ¹Ú¼ø¸¸
A Study on the Automation of Classification of Volume Reconstruction for CT Images S.M. Park 1, I.S. Hong 2, D.S. Kim 1, D.Y. Kim 1 1 Dept. of Biomedical Engineering, Yonsei University, 2 Dept. of Radiology,
More information<3031B0ADB9CEB1B82E687770>
ISSN 1598-0170 (Print) ISSN 2287-1136 (Online) http://www.jksii.or.kr 다채널 멀티미디어 전송용 임베디드 Audio Video Bridging 플랫폼 설계 및 구현 Design and Implementation of an Embedded Audio Video Bridging Platform for Multichannel
More information<30312DC1A4BAB8C5EBBDC5C7E0C1A4B9D7C1A4C3A528B1E8C1BEB9E8292E687770>
Journal of the Korea Institute of Information and Communication Engineering 한국정보통신학회논문지(J. Korea Inst. Inf. Commun. Eng.) Vol. 18, No. 11 : 2593~2599 Nov. 2014 오픈소스 모바일 UI컴포넌트 선정 절차 프레임워크 손효정 1 이민규 2 성백민
More informationexample code are examined in this stage The low pressure pressurizer reactor trip module of the Plant Protection System was programmed as subject for
2003 Development of the Software Generation Method using Model Driven Software Engineering Tool,,,,, Hoon-Seon Chang, Jae-Cheon Jung, Jae-Hack Kim Hee-Hwan Han, Do-Yeon Kim, Young-Woo Chang Wang Sik, Moon
More information01 황선영KICS2014-05-195_ack추가.hwp
논문 -9B-7- The Journal of Korea Information and Communications Society '-7 Vol.9B 7 http://dx.doi.org/.78/kics..9b.7.5 멀티채널과 멀티웨이 구조의 NAND 플래시 SSD를 위한 효율적인 웨어레벨링 알고리듬 김 동 호, 황 선 영 An Efficient Wear-Leveling
More information04-다시_고속철도61~80p
Approach for Value Improvement to Increase High-speed Railway Speed An effective way to develop a highly competitive system is to create a new market place that can create new values. Creating tools and
More informationMicrosoft Word - retail_131122.doc
Analyst 유주연 (639-4584) juyeon.yu@meritz.co.kr RA 박지은 (639-451) jeeeun.park@meritz.co.kr 213.11.22 유통업 Overweight 1월 매출동향: 대형마트 -6.4%, 백화점 -2.2% Top Pick 하이마트 (7184) Buy, TP 15,원 현대홈쇼핑 (575) Buy, TP 21,원
More informationOutput file
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 An Application for Calculation and Visualization of Narrative Relevance of Films Using Keyword Tags Choi Jin-Won (KAIST) Film making
More informationDE1-SoC Board
실습 1 개발환경 DE1-SoC Board Design Tools - Installation Download & Install Quartus Prime Lite Edition http://www.altera.com/ Quartus Prime (includes Nios II EDS) Nios II Embedded Design Suite (EDS) is automatically
More informationÀ¯Çõ Ãâ·Â
Network Virtualization Techniques for Future Internet Services in cloud computing are based on network virtualization that provides both flexibility and network isolation. Network virtualization consists
More information±è±¤¼ø Ãâ·Â-1
Efficient Adaptive Modulation Technique for MAC-PHY Cross Layer Optimization in OFDMA-based Cellular Systems An adaptive transmission scheme using QAM and LDPC code is proposed for an OFDMA cellular system
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Sep.; 27(9),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Sep.; 27(9), 775 782. http://dx.doi.org/10.5515/kjkiees.2016.27.9.775 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) GPS
More informationDBPIA-NURIMEDIA
The e-business Studies Volume 17, Number 4, August, 30, 2016:319~332 Received: 2016/07/28, Accepted: 2016/08/28 Revised: 2016/08/27, Published: 2016/08/30 [ABSTRACT] This paper examined what determina
More informationDBPIA-NURIMEDIA
The e-business Studies Volume 17, Number 6, December, 30, 2016:237~251 Received: 2016/11/20, Accepted: 2016/12/24 Revised: 2016/12/21, Published: 2016/12/30 [ABSTRACT] Recently, there is an increasing
More informationDBPIA-NURIMEDIA
논문 09-34-06-11 한국통신학회논문지 '09-06 Vol. 34 No. 6 임베디드시스템을위한개선된예측동적전력관리방법 준회원김상우 *, 정회원황선영 * An Improved Predictive Dynamic Power Management Scheme for Embedded Systems Sang-Woo Kim* Associate Member, Sun-Young
More informationI
I II III (C B ) (C L ) (HL) Min c ij x ij f i y i i H j H i H s.t. y i 1, k K, i W k C B C L p (HL) x ij y i, i H, k K i, j W k x ij y i {0,1}, i, j H. K W k k H K i i f i i d ij i j r ij i j c ij r ij
More information04 최진규.hwp
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Aug.; 26(8), 710717. http://dx.doi.org/10.5515/kjkiees.2015.26.8.710 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) RF ESPAR
More informationDBPIA-NURIMEDIA
박건수 *, 서태영 **, 김종욱 *** ". 요약 Abstract The induction melting furnace using electric generator has been introduced since 1920s, and it began to be widely applied to industrial applications due to increasing
More informationSmall-Cell 2.6 GHz Doherty 표 1. Silicon LDMOS FET Table 1. Comparison of silicon LDMOS FET and GaN- HEMT. Silicon LDMOS FET Bandgap 1.1 ev 3.4 ev 75 V
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Feb.; 27(2), 108 114. http://dx.doi.org/10.5515/kjkiees.2016.27.2.108 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Small-Cell
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Sep.; 26(10),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Sep.; 26(10), 907 913. http://dx.doi.org/10.5515/kjkiees.2015.26.10.907 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Prediction
More information04 김영규.hwp
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 214 Nov.; 25(11), 1121 1127. http://dx.doi.org/1.5515/kjkiees.214.25.11.1121 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Planar
More information28 저전력복합스위칭기반의 0.16mm 2 12b 30MS/s 0.18um CMOS SAR ADC 신희욱외 Ⅰ. 서론 Ⅱ. 제안하는 SAR ADC 구조및회로설계 1. 제안하는 SAR ADC의전체구조
Journal of The Institute of Electronics and Information Engineers Vol.53, NO.7, July 2016 http://dx.doi.org/10.5573/ieie.2016.53.7.027 ISSN 2287-5026(Print) / ISSN 2288-159X(Online) 논문 2016-53-7-4 c Abstract
More information<313120C0AFC0FCC0DA5FBECBB0EDB8AEC1F2C0BB5FC0CCBFEBC7D15FB1E8C0BAC5C25FBCF6C1A42E687770>
한국지능시스템학회 논문지 2010, Vol. 20, No. 3, pp. 375-379 유전자 알고리즘을 이용한 강인한 Support vector machine 설계 Design of Robust Support Vector Machine Using Genetic Algorithm 이희성 홍성준 이병윤 김은태 * Heesung Lee, Sungjun Hong,
More information???? 1
The Korean Journal of Applied Statistics (2014) 27(1), 13 20 DOI: http://dx.doi.org/10.5351/kjas.2014.27.1.013 Maximum Tolerated Dose Estimation by Stopping Rule and SM3 Design in a Phase I Clinical Trial
More informationMicrosoft Word - 20121030140354943_0.doc
Sector Report 212.11.14 통신서비스 213년 통신 전망: LTE의 결실을 수확하는 해 통신/휴대폰 Analyst 최남곤 2-377-3549 Research Associate 김 솔 2-377-3496 213년의 화두는 LTE의 수익화, 뉴미디어의 확장 지속 등으로 전망됩니다. 상대적으로 비중을 늘려야 할 종목은 LTE에서 좋은 성과를 보이고
More information, Analyst, , Figure 1 통신사가입자추이 ( 명, 000) 60,000 LG U+ KT SKT 50,000 40,000 30,000 20,000 10,000 0 자료 : MSIP. 미래에셋증권리서치센터
Earnings preview, Target price lowered Korea / Telecommunication&Utilities 7 July 2016 OVERWEIGHT Stocks under coverage Company Rating Price Target price Target price change Previous New, Analyst 3774
More informationePapyrus PDF Document
Trans. of the Korean Hydrogen and New Energy Society(2013. 4), Vol. 24, No. 2, pp. 136~141 DOI: http://dx.doi.org/10.7316/khnes.2013.24.2.136 흡기관 분사식 수소 SI기관의 희박과급 적용에 관한 연구 이광주 1 ㆍ이종구 1 ㆍ이종태 2 1 성균관대학교
More informationJournal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI: : Researc
Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp.251-273 DOI: http://dx.doi.org/10.21024/pnuedi.27.2.201706.251 : 1997 2005 Research Trend Analysis on the Korean Alternative Education
More informationÁ¶Áø¼º Ãâ·Â-1
FMC Service Case Analysis: UMA and Femtocell In this paper, we explain UMA(Unlicensed Mobile Alliance) and Femtocell as a key driving factor for FMC(Fixed Mobile Convergence) and QPS(Quadruple Play Service).
More informationµðÇÃÇ¥Áö±¤°í´Ü¸é
2013. JAN. FEB. VOL.23 2013. JAN. FEB. VOL.23 Review Preview Company Technical Point Focus Issue Market Trend Industrial Trend Policy Report KDIA News Tour Statistics KDIA 02 10 11 12 15 16 22 28 36 38
More informationMicrosoft PowerPoint - Master-ChiWeon_Yoon.ppt
고속 Row Cycle 동작이가능한 VPM (Virtual Pipelined Memory) 구조에 대한연구 1998. 12. 28. 윤치원 1 발표순서 연구의필요성 관련연구 VCM (Virtual Channel Memory) POPeye : 메모리시스템성능측정기 POPeye를이용한 VCM 분석 VPM (Virtual Pipelined Memory) 결론및추후과제
More information±è¼ºÃ¶ Ãâ·Â-1
Localization Algorithms Using Wireless Communication Systems For efficient Localization Based Services, development of accurate localization algorithm has to be preceded. In this paper, research trend
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. vol. 26, no. 9, Sep GHz 10 W Doherty. [4]. Doherty. Doherty, C
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2015 Sep.; 26(9), 783 789. http://dx.doi.org/10.5515/kjkiees.2015.26.9.783 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) GaN-HEMT
More informationBSC Discussion 1
Copyright 2006 by Human Consulting Group INC. All Rights Reserved. No Part of This Publication May Be Reproduced, Stored in a Retrieval System, or Transmitted in Any Form or by Any Means Electronic, Mechanical,
More information±èÇö¿í Ãâ·Â
Smartphone Technical Trends and Security Technologies The smartphone market is increasing very rapidly due to the customer needs and industry trends with wireless carriers, device manufacturers, OS venders,
More informationH_AR_.....29P05..5..17..
GROWING IN THE TIME OF UNCERTAINTY HYNIX 2005 ANNUAL REPORT CONTENTS 03 GROWING HYNIX 15 GROWTH PLATFORMS 32 REPORT OF FINANCIALS HYNIX 2005 ANNUAL REPORT 3 GROWING HYNIX HOW WILL YOU GROW IN AN UNCERTAIN
More information05(533-537) CPLV12-04.hwp
모바일 OS 환경의 사용자 반응성 향상 기법 533 모바일 OS 환경의 사용자 반응성 향상 기법 (Enhancing Interactivity in Mobile Operating Systems) 배선욱 김정한 (Sunwook Bae) 엄영익 (Young Ik Eom) (Junghan Kim) 요 약 사용자 반응성은 컴퓨팅 시스템에서 가장 중요 한 요소 중에 하나이고,
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Jun.; 27(6),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 Jun.; 276), 504511. http://dx.doi.org/10.5515/kjkiees.2016.27.6.504 ISSN 1226-3133 Print)ISSN 2288-226X Online) Near-Field
More information08김현휘_ok.hwp
(Regular Paper) 21 3, 2016 5 (JBE Vol. 21, No. 3, May 2016) http://dx.doi.org/10.5909/jbe.2016.21.3.369 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) An Audio Coding Technique Employing the Inter-channel
More informationÆ÷Àå½Ã¼³94š
Cho, Mun Jin (E-mail: mjcho@ex.co.kr) ABSTRACT PURPOSES : The performance of tack coat, commonly used for layer interface bonding, is affected by application rate and curing time. In this study, bonding
More information(JBE Vol. 20, No. 6, November 2015) (Regular Paper) 20 6, (JBE Vol. 20, No. 6, November 2015) ISSN
(JBE Vol. 20, No. 6, November 2015) (Regular Paper) 20 6, 2015 11 (JBE Vol. 20, No. 6, November 2015) http://dx.doi.org/10.5909/jbe.2015.20.6.880 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) a), a) Frame
More informationuntitled
ª Œª Œ 27ƒ 2B Á 2007 3œ pp. 193 ~ 199 ª ƒ w d w ƒ sƒ Methodology of Drought Assessment Using National Groundwater Monitoring Network Data «x Á½ Kwon, Hyung JoongÁKim, Seong Joon Abstract The objective
More information3 : OpenCL Embedded GPU (Seung Heon Kang et al. : Parallelization of Feature Detection and Panorama Image Generation using OpenCL and Embedded GPU). e
(JBE Vol. 19, No. 3, May 2014) (Special Paper) 19 3, 2014 5 (JBE Vol. 19, No. 3, May 2014) http://dx.doi.org/10.5909/jbe.2014.19.3.316 ISSN 2287-9137 (Online) ISSN 1226-7953 (Print) OpenCL Embedded GPU
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE May; 27(5),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2016 May; 27(5), 454462. http://dx.doi.org/10.5515/kjkiees.2016.27.5.454 ISSN 1226-3133 (Print)ISSN 2288-226X (Online) Research
More informationuntitled
PMIS 발전전략 수립사례 A Case Study on the Development Strategy of Project Management Information System 류 원 희 * 이 현 수 ** 김 우 영 *** 유 정 호 **** Yoo, Won-Hee Lee, Hyun-Soo Kim, Wooyoung Yu, Jung-Ho 요 약 건설업무의 효율성
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Mar.; 28(3),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2017 Mar.; 28(3), 163 169. http://dx.doi.org/10.5515/kjkiees.2017.28.3.163 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) PCB
More information2
에너지경제연구 Korean Energy Economic Review Volume 10, Number 1, March 2011 : pp. 1~24 국내화력발전산업에대한연료와자본의대체성분석 1 2 3 ~ 4 5 F F P F P F ln ln ln ln ln ln ln ln ln ln ln ln ln ln ln ln ln 6 ln ln ln ln ln 7 ln
More information4ÃÖÁØ¿µ103-128
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 ABSTRACT A Study on the Recruitment Process of the Parliamentary Councils Jun Young Choi Inha University
More information09오충원(613~623)
A Study of GIS Service of Weather Information* Chung-Weon Oh**,..,., Web 2.0 GIS.,.,, Web 2.0 GIS, Abstract : Due to social and economic value of Weather Information such as urban flooding, demand of Weather
More information정보기술응용학회 발표
, hsh@bhknuackr, trademark21@koreacom 1370, +82-53-950-5440 - 476 - :,, VOC,, CBML - Abstract -,, VOC VOC VOC - 477 - - 478 - Cost- Center [2] VOC VOC, ( ) VOC - 479 - IT [7] Knowledge / Information Management
More information<30312DC1A4BAB8C5EBBDC5C7E0C1A4B9D7C1A4C3A52DC1A4BFB5C3B62E687770>
Journal of the Korea Institute of Information and Communication Engineering 한국정보통신학회논문지(J. Korea Inst. Inf. Commun. Eng.) Vol. 19, No. 2 : 258~264 Feb. 2015 ID3 알고리즘 기반의 귀납적 추론을 활용한 모바일 OS의 성공과 실패에 대한
More informationTHE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE Mar.; 30(3),
THE JOURNAL OF KOREAN INSTITUTE OF ELECTROMAGNETIC ENGINEERING AND SCIENCE. 2019 Mar.; 30(3), 223 228. http://dx.doi.org/10.5515/kjkiees.2019.30.3.223 ISSN 1226-3133 (Print) ISSN 2288-226X (Online) Analysis
More information<313920C0CCB1E2BFF82E687770>
韓 國 電 磁 波 學 會 論 文 誌 第 19 卷 第 8 號 2008 年 8 月 論 文 2008-19-8-19 K 대역 브릭형 능동 송수신 모듈의 설계 및 제작 A Design and Fabrication of the Brick Transmit/Receive Module for K Band 이 기 원 문 주 영 윤 상 원 Ki-Won Lee Ju-Young Moon
More information... 수시연구 국가물류비산정및추이분석 Korean Macroeconomic Logistics Costs in 권혁구ㆍ서상범...
... 수시연구 2013-01.. 2010 국가물류비산정및추이분석 Korean Macroeconomic Logistics Costs in 2010... 권혁구ㆍ서상범... 서문 원장 김경철 목차 표목차 그림목차 xi 요약 xii xiii xiv xv xvi 1 제 1 장 서론 2 3 4 제 2 장 국가물류비산정방법 5 6 7 8 9 10 11 12 13
More information