sw $6,50($1) I3 If register read/write can be done in one cycle, only 2 s are needed. (Both are correct) lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1)

Size: px
Start display at page:

Download "sw $6,50($1) I3 If register read/write can be done in one cycle, only 2 s are needed. (Both are correct) lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1)"

Transcription

1 Q1) Exercise 4.13 Instruction sequence a lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1) I3 b lw $5,-16($5) I1 sw $5,-16($5) I2 add $5,$5,$5 I Indicate dependences and their type. From Ia to Ib on $x : Ia -> Ib ($x) a : RAW : I1 -> I3 ($1), I2 -> I3 ($6) WAR : I1 -> I2 ($6) b : RAW : I1 -> I2 ($5), I1 -> I3 ($5) WAR : I2 -> I3 ($5), I1 -> I3 ($5) WAW : I1 -> I3 ($5) Assume there is no forwarding in this pipelined processor. Indicate hazards and add instructions to eliminate them. WAW and WAR does not affect the single five stage pipeline. a : I1 -> I3 ($1) -> Hazard because dist(i1, I3) = 2 <= dist(id, WB) = 3 I2 -> I3 ($6) -> Hazard because dist(i2, I3) = 1 <= 3 lw $1,40($6) I1 add $6,$2,$2 I2

2 sw $6,50($1) I3 If register read/write can be done in one cycle, only 2 s are needed. (Both are correct) lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1) I3 b : I1 -> I2 ($5) -> Hazard because dist(i1, I2) = 1 < 3 I1 -> I3 ($5) -> Hazard because dist(i1, I3) = 2 < 3. lw $5,-16($5) I1 sw $5,-16($5) I2 add $5,$5,$5 I3 If register read/write can be done in one cycle, only 2 s are needed. (Both are correct) lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1) I Assume there is full forwarding. Indicate hazards and add instructions to eliminate them. The remaining problems in this exercise assume the following clock cycle

3 times: without fowarding with full fowarding with ALU-ALU forwarding only a 300ps 400ps 360ps b 200ps 250ps 220ps a : I1 ->I3 ($1) -> The result of MEM(I1) can be forwarded to EX(I3) stage. I2 -> I3 ($6) -> The result of EX(I2) can be forwarded to EX(I3) stage. lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1) I3 b : I1 -> I2 ($5) -> The result of MEM(I1) cannot be foworaded to EX(I2) stage : 1. I1 -> I3 ($5) -> The result of MEM(I1) can be foworaded to EX(I3) stage. lw $5,-16($5) I1 sw $5,-16($5) I2 add $5,$5,$5 I What is the total execution time of this instruction sequence without forwarding and with full forwarding? What is the speed-up achieved by adding full forwarding? a : Without forwarding t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 IF I1 I2 I3 ID I1 I2 I3

4 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 10 cycles for 3 instructions: 10 * 300ps = 3000ps If register read/write can be done in one cycle, only 2 s are needed. (Both are correct) t0 t1 t2 t3 t4 t5 t6 t7 t8 IF I1 I2 I3 ID I1 I2 I3 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 9 cycles for 3 instructions: 9 * 300 = 2700ps With forwarding t0 t1 t2 t3 t4 t5 t6 IF I1 I2 I3 ID I1 I2 I3 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 7 cycles for 3 instructions: 7 * 400ps = 2800ps Speedup: 3000/2800 = 1.07 ( 2700/2800 = 0.96)

5 b : Without forwarding t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 IF I1 I2 I3 ID I1 I2 I3 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 10 cycles for 3 instructions: 10 * 200ps = 2000ps If register read/write can be done in one cycle, only 2 s are needed. (Both are correct) t0 t1 t2 t3 t4 t5 t6 t7 t8 IF I1 I2 I3 ID I1 I2 I3 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 9 cycles for 3 instructions: 9 * 200ps = 1800ps With forwarding t0 t1 t2 t3 t4 t5 t6 t7 IF I1 I2 I3 ID I1 I2 I3 EX I1 I2 I3

6 MEM I1 I2 I3 WB I1 I2 I3 8 cycles for 3 instructions: 8 * 250ps = 2000ps Speedup: 2000/2000 = 1. (1800/2000 = 0.9) Add instructions to this code to eliminate hazards if there is ALU-ALU forwarding only (no forwarding from the MEM to EX stage)? a : I1 ->I3 ($1) -> The result of MEM(I1) cannot be forwarded to EX(I3) stage. I2 -> I3 ($6) -> The result of EX(I2) can be forwarded to EX(I3) stage. t0 t1 t2 t3 t4 t5 t6 t7 t8 IF I1 I2 I3 ID I1 I2 I3 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 We need 2 instructions between I2 and I3. lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1) I3 If register read/write can be done in one cycle, only 1 s are needed. (Both are correct) t0 t1 t2 t3 t4 t5 t6 t7 IF I1 I2 I3

7 ID I1 I2 I3 EX I1 I2 I3 MEM I1 I2 I3 WB I1 I2 I3 lw $1,40($6) I1 add $6,$2,$2 I2 sw $6,50($1) I3 b : I1 -> I2 ($5) -> The result of MEM(I1) cannot be forwarded to EX(I2) stage. I1 -> I3 ($5) -> The result of MEM(I1) cannot be forwarded to EX(I3) stage. No dependencies can be forwarded: Same as without forwarding lw $5,-16($5) I1 sw $5,-16($5) I2 add $5,$5,$5 I3 If register read/write can be done in one cycle, only 1 s are needed. (Both are correct) lw $5,-16($5) I1 sw $5,-16($5) I2 add $5,$5,$5 I What is the total execution time of this instruction sequence with only ALU-ALU

8 forwarding? What is the speed-up over a no-forwarding pipeline? a : Without forwarding : 3000ps(2700ps) With ALU-ALU forwarding : 9 cycles for 3 instructions, 9 * 360 = 3240ps (8 * 360 = 2880ps) Speed up : 0.93(0.94) b : Without forwarding = 2000ps ( 1800ps) With ALU-ALU forwarding : 10 * 220ps = 2200ps (9 * 220 = 1980ps) Speed up : 0.91(0.91) Q2) Exercise 4.14

9 Instruction sequence a lw $1,40($6) I1 beq $2,$0,Label ; Assume $2 == $0 I2 sw $6,50($2) I3 Label: add $2,$3,$4 I4 sw $3,50($4) I5 b lw $5,-16($5) I1 sw $4,-16($4) I2 lw $3,-20($4) I3 beq $2,$0,Label ; Assume $2!= $0 I4 add $5,$1,$4 I For this problem, assume that all branches are perfectly predicted and that no delay slots are used. If we have only one memory (for both instructions and data), there is a structural hazard every time we need to fetch an instruction in the same cycle in which another instruction accesses data. To guarantee forward progress, this hazard must always be resolved in favor of the instruction that accesses data. What is the total execution time of this instruction sequence in the five-stage pipeline that only has one memory? We have seen that data hazards can be eliminated by adding s to the code. Can you do the same with this structural hazard? Why? a : 9 cycles for 4 instructions t0 t1 t2 t3 t4 t5 t6 t7 t8 IF I1 I2 I4 stall I5 ID I1 I2 I4 stall I5 EX I1 I2 I4 stall I5 MEM I1 I2 I4 stall I5 WB I1 I2 I4 stall I5

10 b : 12 cycles for 5 instructions t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 IF I1 I2 I3 stall stall stall I4 I5 ID I1 I2 I3 stall stall stall I4 I5 EX I1 I2 I3 stall stall stall I4 I5 MEM I1 I2 I3 stall stall stall I4 I5 WB I1 I2 I3 stall stall stall I4 I5 Because also needs to access memory, we cannot resolve structural hazard through inserting s For this problem, assume that all branches are perfectly predicted and that no delay slots are used. If we change load/store instructions to use a register (without an offset) as the address, these instructions no longer need to use the ALU. As a result, MEM and EX stages can be overlapped and the pipeline has only four stages. Change this code to accommodate this changed ISA. Assuming this change does not affect clock cycle time, what speed-up is achieved this instruction sequence? Assume that $ = $a, $ = $b, $ = $c, Instruction sequence a lw $1,$a I1 beq $2,$0,Label ; Assume $2 == $0 I2 sw $6,$b I3 Label: add $2,$3,$4 I4 sw $3,$c I5 b lw $5,$d I1 sw $4,$e I2 lw $3,$f I3

11 beq $2,$0,Label ; Assume $2!= $0 I4 add $5,$1,$4 I5 a : 5 stages -> 8 cycles t0 t1 t2 t3 t4 t5 t6 t7 IF I1 I2 I4 I5 ID I1 I2 I4 I5 EX I1 I2 I4 I5 MEM I1 I2 I4 I5 WB I1 I2 I4 I5 4 stages -> 7 cycles t0 t1 t2 t3 t4 t5 t6 IF I1 I2 I3 I5 ID I1 I2 I3 I5 E/M I1 I2 I3 I5 WB I1 I2 I3 I5 Speedup = 8/7 = 1.14 b : 5 stages -> 9 cycles 4 stages -> 8 cycles Speedup = 9/8 = Assuming stall-on-branch and no delay slots, what speed-up is achieved on this code if branch outcomes are determined in the ID stage, relative to the executions where branch outcomes are determined in the EX stage?

12 a : ID stage -> 9 cycles t0 t1 t2 t3 t4 t5 t6 t7 t8 IF I1 I2 I3 I4 I5 ID I1 I2 stall I4 I5 EX I1 I2 stall I4 I5 MEM I1 I2 stall I4 I5 WB I1 I2 stall I4 I5 Ex stage -> 10 cycles t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 IF I1 I2 I3 I3 I4 I5 ID I1 I2 stall stall I4 I5 EX I1 I2 stall stall I4 I5 MEM I1 I2 stall stall I4 I5 WB I1 I2 stall stall I4 I5 Speedup = 10/9 = 1.11 b : ID stage -> 10 cycles EX stage -> 11 cycles Speedup = 11/10 = 1.10 The remaining problems in this exercise assume that individual pipeline stages have the following latencies: IF ID EX MEM WB a 100ps 120ps 90ps 130ps 60ps

13 b 180ps 100ps 170ps 220ps 60ps Given these pipeline stage latencies, repeat the speed-up calculation from , but take into account the change in clock cycle time. When EX and MEM are don in a single stage, most of their work can be done in parallel. As a result, the resulting EX/MEM stage has a latency that is the larger of the original two, plus 20ps needed for the work that could not be done in parallel. The latency of the pipeline stage should be greater than the slowest stage latency. a : 5 stage -> 130ps(MEM) * 8 cycles = 1040ps 4 stage -> ( )ps(EX/MEM) * 7 cycles = 1050ps Speedup = 0.99 b : 5 stage -> 220ps(MEM) * 9 cycles = 1980ps 4 stage -> ( )(EX/MEM) * 8 cycles = 1920ps Speedup = Given these pipeline stage latencies, repeat the speed-up calculation from Exercise , taking into account the change in clock cycle time. Assume that the latency ID stage increases by 50% and the latency of the EX stage decreases by 10ps when branch outcome resolution is moved from EX to ID. a : Branch resolution at EX stage -> 130ps(MEM) * 10cycles = 1300ps Branch resolution at ID stage -> 180ps(ID) * 9 cycles = 1620ps Speedup = 0.80 b : Branch resolution at EX stage -> 220ps(MEM) * 11cycles = 2420ps Branch resolution at ID stage -> 220ps(MEM) * 10 cycles = 2200ps Speedup = Assuming stall-on-branch and no delay slots, what is the new clock cycle time and

14 execution time of this instruction sequence if beq address computation is moved to the MEM stage? What is the speed-up from this change? Assume that the latency of the EX stage is reduced by 20ps and the latency of the MEM stage is unchanged when branch outcome resolution is moved from EX to MEM. a : Branch resolution at EX stage -> 130ps(MEM) * 10cycles = 1300ps Branch resolution at MEM stage -> 130ps(MEM) * 11 cycles = 1430ps Speedup = 0.91 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 IF I1 I2 I3 I3 I3 I4 I5 ID I1 I2 stall stall stall I4 I5 EX I1 I2 stall stall stall I4 I5 MEM I1 I2 stall stall stall I4 I5 WB I1 I2 stall stall stall I4 I5 b : Branch resolution at EX stage -> 220ps(MEM) * 11cycles = 1300ps Branch resolution at MEM stage -> 220ps(MEM) * 12 cycles = 2640ps Speedup = 0.92 Q3) If we use no forwarding, what fraction of cycles are we stalling due to data hazards? (3) Dependences to the 1 st next instruction: 2 stall cycles Dependences to both 1 st and 2 nd next instruction: 2 stall cycles Dependences to only the 2 nd next instruction: 1 stall cycle

15 CPI Fraction a x x1 = % (0.95/1.95) b x x1 = % (0.9/1.9) If we use full forwarding (forward all results that can be forwarded), what fraction of cycles are we stalling due to data hazards? (3) The only RAW data dependences that cause stalls are those from the MEM state of one instruction to the 1 st next instruction, and the stall is only 1 cycle. CPI Fraction a = % (0.25/1.25) b = % (0.2/1.2) Which of the two options results in fewer data stall cycles? (3) With forwarding only from the EX/MEM register: EX to 1st dependences: no stalls. EX to 2nd dependences: 1 stall cycles MEM to 1st dependences: 2 stall cycles With forwarding only from the MEM/WB register: EX to 2nd dependences: no stalls. MEM to 1st dependences: 1 stall cycle (no time travel). EX to 1st dependences: 1 stall cycle because we must wait for the instruction to complete the MEM stage to be able to forward to the next instruction. EX/MEM MEM/WB Fewer stall cycles with a x2 = = 0.45 MEM/WB b x2 = = 0.4 MEM/WB

16 What is the speed-up achieved by adding full forwarding to a pipeline that had no forwarding? (2) We have already computed the CPI without forwarding and with full forwarding in and We can compute time per instruction by taking into account the clock cycle time: Without forwarding With forwarding Speed-up a x 100ps = 195ps 1.25 x 110ps = 137.5ps 1.42 b. 1.9 x 300ps = 570ps 1.2 x 350ps = 420ps What would be the additional speed-up if we added time-travel forwarding that eliminates all data hazards? (2) We already computed the time per instruction for full forwarding in We can compute timeper instruction with time-travel forwarding and the speed-up over full forwarding. Without forwarding Time-travel forwarding Speed-up a x 110ps = 137.5ps 1 x 210ps = 210ps 0.65 b. 1.2 x 350ps = 420ps 1 x 450ps = 450ps Repeat Exercise but this time determine which of the two options results in shorter time per instruction. (1) EX/MEM MEM/WB Fewer stall cycles with a. 1.4 x 100ps = 140ps 1.45 x 100ps = 145ps EX/MEM b x 320ps = 432ps 1.4 x 310ps = 434ps EX/MEM Q4) Stall cycles due to mispredicted branches increase the CPI. What is the extra CPI due to mispredicted branches with the always-taken predictor? Assume that branch outcomes are

17 determined in the EX stage, that there are no data hazards, and that no delay slots are used. (2) - cycle stall 을 2cycle, 3cycle 모두정답으로처리. a. Misprediction 에의해생기는 cycle stall 은 3 cycle 이다. Branch instruction 의전체양은 15% 이고, always-taken predictor 의 miss rate 은 60% 이므로상승하는 CPI 을계산하면, 3 * 0.6 * 0.15 = 0.27 만큼 CPI 상승이발생한다. b. predictor 의 miss rate 은 40% 이고, branch instruction 의양은 10% 이므로, 3 * 0.4 * 0.10 = Repeat Exercise for the "always not-taken" predictor. (2) a. always not-taken 의 miss rate 은 40% 이고, branch instruction 의양은 15% 이므로, 3 * 0.4 * 0.15 = 0.18 b. miss-rate 은 60% 이고, branch instruction 의양은 10% 이므로, 3 * 0.6 * 0.10 = Repeat Exercise for the 2-bit predictor. (2) a. 2-bit predictor 의 miss rate 은 20% 이고, branch instruction 의양은 15% 이므로, 3 * 0.2 * 0.15 = 0.09 b. miss-rate 은 5% 이고, branch instruction 의양은 10% 이므로, 3 * 0.05 * 0.10 = * With the 2-bit predictor, what speed-up would be achieved if we could convert half of the branch instructions in a way that replaces a branch instruction with an ALU instruction? Assume that correctly and incorrectly predicted instructions have the same chance of being replaced. (3) 2-bit predictor의 CPI는 ALU instruction으로의 conversion이없는경우, 의 CPI만큼의증가가일어난 a = 1.09, b = 1.015이다. 여기서 branch instruction의절반을 (branch prediction이 correct 하던, incorrect 하던지상관없이 ) ALU instruction으로교체가가능하다면 CPI는 a = * 0.2 * 0.15 * 0.5 = 1.045, b = 1+ 3 * 0.05 * 0.10 * 0.5 = 이된다. 따라서 conversion으로생기는 speed-up은 a = 1.09 / = 1.043, b = / = 1.007가된다 With the 2-bit predictor, what speed-up would be achieved if we could convert half of the branch instructions in a way that replaced each branch instruction with two ALU instructions? Assume that correctly and incorrectly predicted instructions have the same

18 chance of being replaced. (3) Branch instruction의 50% 를 2개의 ALU instruction으로 conversion하게되면총 program의 instruction의개수는늘어나게된다. 따라서 CPI를계산하면, a = 1 + (1 + 3 * 0.2) * 0.15 * 0.5 = 1.12, b = 1 + (1 + 3 * 0.05) * 0.1 * 0.5 = 1.058로나오게되므로, speed-up을계산하면, a = 1.09 / 1.12 = 0.97, b = / = 0.96이나오게된다 Some branch instructions are much more predictable than others. If we know that 80% of all executed branch instructions are easy-to-predict look-back branches that are always predicted correctly, what is the accuracy of the 2-bit predictor on the remaining 20% of the branch instructions? (2) a. 2-bit predictor 의 accuracy 는 80% 인데, 위문제에서 80% 의 branch instruction 은항상 correctly predicted 하므로나머지 20% 의 branch instruction 에대해서는 100% miss 가난다고볼 수있다. b. 2-bit predictor의 accuracy는 95% 인데, 위문제에서 80% 의 branch instruction은항상 correctly predicted 하므로나머지 20% 의 branch instruction 중 15% 에대해서정확히맞춘다고볼수있다. 따라서이경우나머지 20% 의 branch instruction에대한 accuracy는 15/20 = 75% 가된다. Q5) What is the accuracy of always-taken and always-not-taken predictors for this sequence of branch outcomes? (2) a. always-taken = 75%, always not-taken = 25% b. always-taken = 60%, always not-taken = 40% What is the accuracy of the 2-bit predictor for the first four branches in this pattern, assuming that the predictor starts off in the bottom left state from Figure 4.63 (predict not taken) (2) 처음 2-bit predictor 의 prediction 은 predict not taken 에서시작하므로, a. 0%, b. 25% What is the accuracy of the 2-bit predictor if this pattern is repeated forever? (2) a. 75%, b. 40%

19 Design a predictor that would achieve a perfect accuracy if this pattern is repeated forever. Your predictor should be a sequential circuit with one output that provides a prediction (1 for taken, 0 for not taken) and no inputs other than the clock and the control signal that indicates that the instruction is a conditional branch. (3) Shift register 를통해구현이가능하다. 1 for taken, 0 for not taken 으로 shift 하는 register 를만들어 a 의경우 100% prediction 을위한초기값은 1101 로준다. ( 즉 4-bit shift register 를 left shift 방식 으로구현 ) b 의경우 5-bit shift register 를두어서초기값을 으로두면된다 what is the accuracy of your predictor from Exercise if it is given a repeating pattern that is the exact opposite of this one? (2) Predictor 의 output 이항상 opposite 하게반복되는 pattern 이라면 accuracy 는 0% 가된다 Repeat the Exercise , but now your predictor should be able to eventually (after a warm-up period during which it can make wrong predictions) start perfectly predicting both this pattern and its opposite. Your predictor should have an input that tells it what the real outcome was. Hint: this input lets your predictor determine which of the two repeating patterns it is given. (3) 에서구현된 shift register에서처음 predictor의결과가 incorrect로나올경우, shift register 의 pattern을 invert하여인식할수있게만들면된다. 이렇게하면처음 prediction에서만 incorrect가발생하고, 그후부터 opposite pattern에대해서도 100% prediction이가능하게된다. Opposite pattern으로시작하지않는다면처음부터 shift register를통해 100% prediction이가능하게될것이다. Q6) Which exceptions can each of these instructions trigger? For each of these exceptions, specify the pipeline state in which it is detected. (2) Instruction 1 Instruction 2 a. Overflow (EX) Invalid target address (EX) b. Invalid data address (MEM) No exceptions

20 Show how the pipeline organization must be changed to be able to handle this exception. (2) The Mux that selects the next PC must have inputs added to it. Each input is a constant address of an exception handler. The exception detectors must be added to the appropriate pipeline stage and the outputs of these detectors must be used to control the pre-pc Mux, and also to convert to s instructions that are already in the pipeline behind the exception-triggering instruction What happens in the pipeline when the first instruction causes the first exception? (3) Instructions are fetched normally until the exception is detected. When the exception is detected, all instructions that are in the pipeline after the first instruction must be converted to s. As a result, the second instruction never completes and does not affect pipeline state. In the cycle that immediately follows the cycle in which the exception is detected, the processor will fetch the first instruction of the exception handler What is the address of the exception handler? What happens if there is an invalid instruction at that address in instruction memory? (3) Handler address: a. 0xFFFFF000 b. 0x The first instruction word from the handler address is fetched in the cycle after the one in which the original exception is detected. When this instruction is decoded in the next cycle, the processor detects that the instruction is invalid. This exception is treated just like a normal exception it converts the instruction being fetched in that cycle into a and puts the address of the Invalid Instruction handler into the PC at the end of the cycle in which the Invalid Instruction exception is detected Repeat Exercise using this modified pipeline and vectored exception handling. (3) This approach requires us to fetch the address of the handler from memory. We must add the

21 code of the exception to the address of the exception vector table, read the handler s address from memory, and jump to that address. One way of doing this is to handle it like a special instruction that computer the address in EX, loads the handler s address in MEM, and sets the PC in WB We want to emulate vectored exception handling on a machine that has only one fixed handler address. Write the code that should be at that fixed address. (2) We need a special instruction that allows us to move a value from the (exception) Cause register to a general-purpose register. We must first save the general-purpose register (so we can restore it later), load the Cause register into it, add the address of the vector table to it, use the result as an address for a load that gets the address of the right exception handler from memory, and finally jump to that handler. Q7) a. b. add $1, $0, $0 # i = 0 add $4, $0, $0 loop: loop: beq $1, $2, end # if i == j, goto end sll $6, $1, 2 # $6 = i << 2, for array index add $7, $3, $6 # $7 = a+(i*4) 주소 계산 sll $1, $4, 2 # $1 = i << 2, for array index add $2, $6, $1 # $2 = a+(i*4) 주소 계산 lw $3, 0($2) # $3 = a[i] 값 lw $8, 0($7) # $8 = a[i] 값로드 lw $1, 4($2) # $1 = a[i+1] 값 add $7, $4, $6 # $7 = b+(i*4) 주소 계산 beq $3, $1, end # exit loop sw $0, 0($2) # a[i] = 0

22 sw $8, 0($7) # b[i] = a[i] addi $4, $4, 1 # i++ addi $1, $1, 1 # i++ j loop: # for j loop: # for end: end: a Instructions add $1, $0, $0 IF ID EX ME WB beq $1, $2, end IF ID ** EX ME WB sll $6, $1, 2 IF ** ID EX ME WB add $7, $3, $6 IF ** ID ** EX ME WB lw $8, 0($7) IF ** ID EX ME WB add $7, $4, $6 IF ** ID EX ME WB sw $8, 0($7) IF ** ID EX ME WB addi $1, $1, 1 IF ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB beq $1, $2, end IF ID ** EX ME WB sll $6, $1, 2 IF ** ID EX ME WB add $7, $3, $6 IF ** ID ** EX ME WB lw $8, 0($7) IF ** ID EX ME WB add $7, $4, $6 IF ** ID ** EX ME WB sw $8, 0($7) IF ** ID EX ME WB addi $1, $1, 1 IF ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB beq $1, $2, end IF ID ** EX ME WB b

23 Instructions add $4, $0, $0 IF ID EX ME WB sll $1, $4, 2 IF ID ** EX ME WB add $2, $6, $1 IF ** ID EX ME WB lw $3, 0($2) IF ** ID ** EX ME WB lw $1, 4($2) IF ** ID EX ME WB beq $3, $1, end IF ** ID ** ** EX ME WB sw $0, 0($2) IF ** ** ID EX ME WB addi $4, $4, 1 IF ** ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB sll $1, $4, 2 IF ID EX ME WB add $2, $6, $1 IF ID EX ME WB lw $3, 0($2) IF ID ** EX ME WB lw $1, 4($2) IF ** ID EX ME WB beq $3, $1, end IF ** ID ** ** EX ME WB sw $0, 0($2) IF ** ** ID EX ME WB addi $4, $4, 1 IF ** ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB sll $1, $4, 2 IF ID EX ME WB add $2, $6, $1 IF ID EX ME WB lw $3, 0($2) IF ID EX ** ME WB lw $1, 4($2) IF ID ** EX ME WB beq $3, $1, end IF ID ** ** ** EX ME a a. 변화없음 / 바꿀수있는것이 sw $8, 0($7), addi $1, $1, 1 뿐이지만바꿔도전체수행량은다 르지가않다. b. 변화없음 a 변화없음 b 변화없음

24 a 1-issue processor Instructions add $1, $0, $0 IF ID EX ME WB beq $1, $2, end IF ID EX ME WB sll $6, $1, 2 IF ID EX ME WB add $7, $3, $6 IF ID EX ME WB lw $8, 0($7) IF ID EX ME WB add $7, $4, $6 IF ID EX ME WB sw $8, 0($7) IF ID EX ME WB addi $1, $1, 1 IF ID EX ME WB beq $0, $0, loop IF ID EX ME WB beq $1, $2, end IF ID EX ME WB 위표에서굵은글씨가 loop 안내용이다. 전제조건이 1,000,000 반복이므로파이프라인에서의앞 / 뒤를잘라내면각명령당한번의 cycle 이사용됨을알수있다. 따라서 CPI = 1 2-issue processor Instructions add $1, $0, $0 IF ID EX ME WB beq $1, $2, end IF ID ** EX ME WB sll $6, $1, 2 IF ** ID EX ME WB add $7, $3, $6 IF ** ID ** EX ME WB lw $8, 0($7) IF ** ID EX ME WB add $7, $4, $6 IF ** ID EX ME WB sw $8, 0($7) IF ** ID EX ME WB addi $1, $1, 1 IF ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB beq $1, $2, end IF ID ** EX ME WB

25 sll $6, $1, 2 IF ** ID EX ME WB add $7, $3, $6 IF ** ID ** EX ME WB lw $8, 0($7) IF ** ID EX ME WB add $7, $4, $6 IF ** ID ** EX ME WB sw $8, 0($7) IF ** ID EX ME WB addi $1, $1, 1 IF ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB beq $1, $2, end IF ID ** EX ME WB 총명령어가 16 개, cycle 이 14 이므로 CPI = 14/16 이다. 따라서 speed-up = 16/ b 1-issue processor Instructions add $4, $0, $0 IF ID EX ME WB sll $1, $4, 2 IF ID EX ME WB add $2, $6, $1 IF ID EX ME WB lw $3, 0($2) IF ID EX ME WB lw $1, 4($2) IF ID EX ME WB beq $3, $1, end IF ID ** EX ME WB sw $0, 0($2) IF ** ID EX ME WB addi $4, $4, 1 IF ID EX ME WB beq $0, $0, loop IF ID EX ME WB CPI = 9/8 2-issue processor Instructions add $4, $0, $0 IF ID EX ME WB sll $1, $4, 2 IF ID ** EX ME WB add $2, $6, $1 IF ** ID EX ME WB lw $3, 0($2) IF ** ID ** EX ME WB lw $1, 4($2) IF ** ID EX ME WB

26 beq $3, $1, end IF ** ID ** ** EX ME WB sw $0, 0($2) IF ** ** ID EX ME WB addi $4, $4, 1 IF ** ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB sll $1, $4, 2 IF ID EX ME WB add $2, $6, $1 IF ID EX ME WB lw $3, 0($2) IF ID ** EX ME WB lw $1, 4($2) IF ** ID EX ME WB beq $3, $1, end IF ** ID ** ** EX ME WB sw $0, 0($2) IF ** ** ID EX ME WB addi $4, $4, 1 IF ** ** ID EX ME WB beq $0, $0, loop IF ID EX ME WB sll $1, $4, 2 IF ID EX ME WB add $2, $6, $1 IF ID EX ME WB lw $3, 0($2) IF ID EX ** ME WB lw $1, 4($2) IF ID ** EX ME WB beq $3, $1, end IF ID ** ** ** EX ME CPI = 15/16, Speedup = (9/8) / (15/16) = a Instructions add $1, $0, $0 beq $1, $2, end a 1 sll $6, $1, 2 b 2 add $7, $3, $6 b 3 lw $8, 0($7) c 4 add $7, $4, $6 c 5 sw $8, 0($7) d 6 addi $1, $1, 1 d 7 beq $0, $0, loop e 8 beq $1, $2, end e 8

27 sll $6, $1, 2 f 9 add $7, $3, $6 f 10 lw $8, 0($7) g 11 add $7, $4, $6 g 12 sw $8, 0($7) h 13 addi $1, $1, 1 h 14 beq $0, $0, loop a 1 beq $1, $2, end 위에서같은알파벳으로되어있는명령어가같이수행될수있는명령어들이다. 하지만대부분 메모리에쓰는명령어기때문에같이수행불가. beq 에서만실제로한클락에일어나는것을 확인할수가있다. CPI = 14/16, Speed-up = 16/ b Instructions add $4, $0, $0 sll $1, $4, 2 a 1 add $2, $6, $1 b 2 lw $3, 0($2) b 3 lw $1, 4($2) c 4 beq $3, $1, end c 5 sw $0, 0($2) d 6 addi $4, $4, 1 d 7 beq $0, $0, loop e 8 sll $1, $4, 2 e 8 add $2, $6, $1 f 9 lw $3, 0($2) f 10 lw $1, 4($2) g 11 beq $3, $1, end g 12 sw $0, 0($2) h 13 addi $4, $4, 1 h 14 beq $0, $0, loop a 1

28 A 와마찬가지다. CPI = 14/16. Speed-up = (8/9) / (14/16) = 1.29

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh

Page 2 of 6 Here are the rules for conjugating Whether (or not) and If when using a Descriptive Verb. The only difference here from Action Verbs is wh Page 1 of 6 Learn Korean Ep. 13: Whether (or not) and If Let s go over how to say Whether and If. An example in English would be I don t know whether he ll be there, or I don t know if he ll be there.

More information

Stage 2 First Phonics

Stage 2 First Phonics ORT Stage 2 First Phonics The Big Egg What could the big egg be? What are the characters doing? What do you think the story will be about? (큰 달걀은 무엇일까요? 등장인물들은 지금 무엇을 하고 있는 걸까요? 책은 어떤 내용일 것 같나요?) 대해 칭찬해

More information

4 5 4. Hi-MO 애프터케어 시스템 편 5. 오비맥주 카스 카스 후레쉬 테이블 맥주는 천연식품이다 편 처음 스타일 그대로, 부탁 케어~ Hi-MO 애프터케어 시스템 지속적인 모발 관리로 끝까지 스타일이 유지되도록 독보적이다! 근데 그거 아세요? 맥주도 인공첨가물이

4 5 4. Hi-MO 애프터케어 시스템 편 5. 오비맥주 카스 카스 후레쉬 테이블 맥주는 천연식품이다 편 처음 스타일 그대로, 부탁 케어~ Hi-MO 애프터케어 시스템 지속적인 모발 관리로 끝까지 스타일이 유지되도록 독보적이다! 근데 그거 아세요? 맥주도 인공첨가물이 1 2 On-air 3 1. 이베이코리아 G마켓 용평리조트 슈퍼브랜드딜 편 2. 아모레퍼시픽 헤라 루즈 홀릭 리퀴드 편 인쇄 광고 올해도 겨울이 왔어요. 당신에게 꼭 해주고 싶은 말이 있어요. G마켓에선 용평리조트 스페셜 패키지가 2만 6900원! 역시 G마켓이죠? G마켓과 함께하는 용평리조트 스페셜 패키지. G마켓의 슈퍼브랜드딜은 계속된다. 모바일 쇼핑 히어로

More information

Page 2 of 5 아니다 means to not be, and is therefore the opposite of 이다. While English simply turns words like to be or to exist negative by adding not,

Page 2 of 5 아니다 means to not be, and is therefore the opposite of 이다. While English simply turns words like to be or to exist negative by adding not, Page 1 of 5 Learn Korean Ep. 4: To be and To exist Of course to be and to exist are different verbs, but they re often confused by beginning students when learning Korean. In English we sometimes use the

More information

Microsoft PowerPoint - ch03ysk2012.ppt [호환 모드]

Microsoft PowerPoint - ch03ysk2012.ppt [호환 모드] 전자회로 Ch3 iode Models and Circuits 김영석 충북대학교전자정보대학 2012.3.1 Email: kimys@cbu.ac.kr k Ch3-1 Ch3 iode Models and Circuits 3.1 Ideal iode 3.2 PN Junction as a iode 3.4 Large Signal and Small-Signal Operation

More information

Lectures for 2nd Edition

Lectures for 2nd Edition Computer Architecture Chapter 4-3 The Processor: Enhancing Performance with Pipelining 1 Data Hazards Pipeline data hazards -Backward dep. lines Write Read 2 One Alternative Approach: Compiler Scheduling

More information

본문01

본문01 Ⅱ 논술 지도의 방법과 실제 2. 읽기에서 논술까지 의 개발 배경 읽기에서 논술까지 자료집 개발의 본래 목적은 초 중 고교 학교 평가에서 서술형 평가 비중이 2005 학년도 30%, 2006학년도 40%, 2007학년도 50%로 확대 되고, 2008학년도부터 대학 입시에서 논술 비중이 커지면서 논술 교육은 학교가 책임진다. 는 풍토 조성으로 공교육의 신뢰성과

More information

2 min 응용 말하기 01 I set my alarm for 7. 02 It goes off. 03 It doesn t go off. 04 I sleep in. 05 I make my bed. 06 I brush my teeth. 07 I take a shower.

2 min 응용 말하기 01 I set my alarm for 7. 02 It goes off. 03 It doesn t go off. 04 I sleep in. 05 I make my bed. 06 I brush my teeth. 07 I take a shower. 스피킹 매트릭스 특별 체험판 정답 및 스크립트 30초 영어 말하기 INPUT DAY 01 p.10~12 3 min 집중 훈련 01 I * wake up * at 7. 02 I * eat * an apple. 03 I * go * to school. 04 I * put on * my shoes. 05 I * wash * my hands. 06 I * leave

More information

하나님의 선한 손의 도우심 이세상에서 가장 큰 축복은 하나님이 나와 함께 하시는 것입니다. 그 이 유는 하나님이 모든 축복의 근원이시기 때문입니다. 에스라서에 보면 하나님의 선한 손의 도우심이 함께 했던 사람의 이야기 가 나와 있는데 에스라 7장은 거듭해서 그 비결을

하나님의 선한 손의 도우심 이세상에서 가장 큰 축복은 하나님이 나와 함께 하시는 것입니다. 그 이 유는 하나님이 모든 축복의 근원이시기 때문입니다. 에스라서에 보면 하나님의 선한 손의 도우심이 함께 했던 사람의 이야기 가 나와 있는데 에스라 7장은 거듭해서 그 비결을 새벽이슬 2 0 1 3 a u g u s t 내가 이스라엘에게 이슬과 같으리니 그가 백합화같이 피 겠고 레바논 백향목같이 뿌리가 박힐것이라. Vol 5 Number 3 호세아 14:5 하나님의 선한 손의 도우심 이세상에서 가장 큰 축복은 하나님이 나와 함께 하시는 것입니다. 그 이 유는 하나님이 모든 축복의 근원이시기 때문입니다. 에스라서에 보면 하나님의 선한

More information

2017.09 Vol.255 C O N T E N T S 02 06 26 58 63 78 99 104 116 120 122 M O N T H L Y P U B L I C F I N A N C E F O R U M 2 2017.9 3 4 2017.9 6 2017.9 7 8 2017.9 13 0 13 1,007 3 1,004 (100.0) (0.0) (100.0)

More information

09김정식.PDF

09김정식.PDF 00-09 2000. 12 ,,,,.,.,.,,,,,,.,,..... . 1 1 7 2 9 1. 9 2. 13 3. 14 3 16 1. 16 2. 21 3. 39 4 43 1. 43 2. 52 3. 56 4. 66 5. 74 5 78 1. 78 2. 80 3. 86 6 88 90 Ex e cu t iv e Su m m a r y 92 < 3-1> 22 < 3-2>

More information

- 2 -

- 2 - - 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 -

More information

¹Ìµå¹Ì3Â÷Àμâ

¹Ìµå¹Ì3Â÷Àμâ MIDME LOGISTICS Trusted Solutions for 02 CEO MESSAGE MIDME LOGISTICS CO., LTD. 01 Ceo Message We, MIDME LOGISTICS CO., LTD. has established to create aduance logistics service. Try to give confidence to

More information

11¹ÚÇý·É

11¹ÚÇý·É Journal of Fashion Business Vol. 6, No. 5, pp.125~135(2002) The Present State of E-Business according to the Establishment Year and the Sales Approach of Dongdaemun Clothing Market Park, Hea-Ryung* and

More information

300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,... (recall). 2) 1) 양웅, 김충현, 김태원, 광고표현 수사법에 따른 이해와 선호 효과: 브랜드 인지도와 의미고정의 영향을 중심으로, 광고학연구 18권 2호, 2007 여름

300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,... (recall). 2) 1) 양웅, 김충현, 김태원, 광고표현 수사법에 따른 이해와 선호 효과: 브랜드 인지도와 의미고정의 영향을 중심으로, 광고학연구 18권 2호, 2007 여름 동화 텍스트를 활용한 패러디 광고 스토리텔링 연구 55) 주 지 영* 차례 1. 서론 2. 인물의 성격 변화에 의한 의미화 전략 3. 시공간 변화에 의한 의미화 전략 4. 서사의 변개에 의한 의미화 전략 5. 창조적인 스토리텔링을 위하여 6. 결론 1. 서론...., * 서울여자대학교 초빙강의교수 300 구보학보 12집. 1),,.,,, TV,,.,,,,,,..,...,....,...

More information

퇴좈저널36호-4차-T.ps, page 2 @ Preflight (2)

퇴좈저널36호-4차-T.ps, page 2 @ Preflight (2) Think Big, Act Big! Character People Literature Beautiful Life History Carcere Mamertino World Special Interview Special Writing Math English Quarts I have been driven many times to my knees by the overwhelming

More information

182 동북아역사논총 42호 금융정책이 조선에 어떤 영향을 미쳤는지를 살펴보고자 한다. 일제 대외금융 정책의 기본원칙은 각 식민지와 점령지마다 별도의 발권은행을 수립하여 일본 은행권이 아닌 각 지역 통화를 발행케 한 점에 있다. 이들 통화는 일본은행권 과 等 價 로 연

182 동북아역사논총 42호 금융정책이 조선에 어떤 영향을 미쳤는지를 살펴보고자 한다. 일제 대외금융 정책의 기본원칙은 각 식민지와 점령지마다 별도의 발권은행을 수립하여 일본 은행권이 아닌 각 지역 통화를 발행케 한 점에 있다. 이들 통화는 일본은행권 과 等 價 로 연 越 境 하는 화폐, 분열되는 제국 - 滿 洲 國 幣 의 조선 유입 실태를 중심으로 181 越 境 하는 화폐, 분열되는 제국 - 滿 洲 國 幣 의 조선 유입 실태를 중심으로 - 조명근 고려대학교 BK21+ 한국사학 미래인재 양성사업단 연구교수 Ⅰ. 머리말 근대 국민국가는 대내적으로는 특정하게 구획된 영토에 대한 배타적 지배와 대외적 자주성을 본질로 하는데, 그

More information

I&IRC5 TG_08권

I&IRC5 TG_08권 I N T E R E S T I N G A N D I N F O R M A T I V E R E A D I N G C L U B The Greatest Physicist of Our Time Written by Denny Sargent Michael Wyatt I&I Reading Club 103 본문 해석 설명하기 위해 근래의 어떤 과학자보다도 더 많은 노력을

More information

2011´ëÇпø2µµ 24p_0628

2011´ëÇпø2µµ 24p_0628 2011 Guide for U.S. Graduate School Admissions Table of Contents 02 03 04 05 06 08 09 10 11 13 15 21 LEADERS UHAK INTERNATIONAL STUDENTS SERVICE www.leadersuhak.com Leaders Uhak International Students

More information

Breathing problems Pa t i e n t: I have been having some breathing problems lately. I always seem to be out of breath no matter what I am d o i n g. ( Nurse : How long have you been experiencing this problem?

More information

step 1-1

step 1-1 Written by Dr. In Ku Kim-Marshall STEP BY STEP Korean 1 through 15 Action Verbs Table of Contents Unit 1 The Korean Alphabet, hangeul Unit 2 Korean Sentences with 15 Action Verbs Introduction Review Exercises

More information

#Ȳ¿ë¼®

#Ȳ¿ë¼® http://www.kbc.go.kr/ A B yk u δ = 2u k 1 = yk u = 0. 659 2nu k = 1 k k 1 n yk k Abstract Web Repertoire and Concentration Rate : Analysing Web Traffic Data Yong - Suk Hwang (Research

More information

- i - - ii - - iii - - iv - - v - - vi - - 1 - - 2 - - 3 - 1) 통계청고시제 2010-150 호 (2010.7.6 개정, 2011.1.1 시행 ) - 4 - 요양급여의적용기준및방법에관한세부사항에따른골밀도검사기준 (2007 년 11 월 1 일시행 ) - 5 - - 6 - - 7 - - 8 - - 9 - - 10 -

More information

歯15-ROMPLD.PDF

歯15-ROMPLD.PDF MSI & PLD MSI (Medium Scale Integrate Circuit) gate adder, subtractor, comparator, decoder, encoder, multiplexer, demultiplexer, ROM, PLA PLD (programmable logic device) fuse( ) array IC AND OR array sum

More information

슬라이드 제목 없음

슬라이드 제목 없음 물리화학 1 문제풀이 130403 김대형교수님 Chapter 1 Exercise (#1) A sample of 255 mg of neon occupies 3.00 dm 3 at 122K. Use the perfect gas law to calculate the pressure of the gas. Solution 1) The perfect gas law p

More information

<32382DC3BBB0A2C0E5BED6C0DA2E687770>

<32382DC3BBB0A2C0E5BED6C0DA2E687770> 논문접수일 : 2014.12.20 심사일 : 2015.01.06 게재확정일 : 2015.01.27 청각 장애자들을 위한 보급형 휴대폰 액세서리 디자인 프로토타입 개발 Development Prototype of Low-end Mobile Phone Accessory Design for Hearing-impaired Person 주저자 : 윤수인 서경대학교 예술대학

More information

204 205

204 205 -Road Traffic Crime and Emergency Evacuation - 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 Abstract Road Traffic Crime

More information

서론 34 2

서론 34 2 34 2 Journal of the Korean Society of Health Information and Health Statistics Volume 34, Number 2, 2009, pp. 165 176 165 진은희 A Study on Health related Action Rates of Dietary Guidelines and Pattern of

More information

Microsoft PowerPoint - 7-Work and Energy.ppt

Microsoft PowerPoint - 7-Work and Energy.ppt Chapter 7. Work and Energy 일과운동에너지 One of the most important concepts in physics Alternative approach to mechanics Many applications beyond mechanics Thermodynamics (movement of heat) Quantum mechanics...

More information

<B3EDB9AEC1FD5F3235C1FD2E687770>

<B3EDB9AEC1FD5F3235C1FD2E687770> 경상북도 자연태음악의 소박집합, 장단유형, 전단후장 경상북도 자연태음악의 소박집합, 장단유형, 전단후장 - 전통 동요 및 부녀요를 중심으로 - 이 보 형 1) * 한국의 자연태 음악 특성 가운데 보편적인 특성은 대충 밝혀졌지만 소박집합에 의한 장단주기 박자유형, 장단유형, 같은 층위 전후 구성성분의 시가( 時 價 )형태 등 은 밝혀지지 않았으므로

More information

<C7D1B9CEC1B7BEEEB9AEC7D03631C1FD28C3D6C1BE292E687770>

<C7D1B9CEC1B7BEEEB9AEC7D03631C1FD28C3D6C1BE292E687770> 설화에 나타난 사회구조와 그 의미 23) 박유미 * 차례 Ⅰ. 문제제기 Ⅱ. 서사 내부의 사회구조 Ⅲ. 사회문제의 해결방식과 그 의미 Ⅳ. 설화와 후대전승과의 상관관계 Ⅴ. 결론 국문초록 삼국유사 의 조에는 왕거인 이야기와 거타지 이야기가 하나의 설화에 묶여 전하고 있는데, 두 이야기는 해결구조에서 차이를

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 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 information

DBPIA-NURIMEDIA

DBPIA-NURIMEDIA 27(2), 2007, 96-121 S ij k i POP j a i SEXR j i AGER j i BEDDAT j ij i j S ij S ij POP j SEXR j AGER j BEDDAT j k i a i i i L ij = S ij - S ij ---------- S ij S ij = k i POP j a i SEXR j i AGER j i BEDDAT

More information

<31342D3034C0E5C7FDBFB52E687770>

<31342D3034C0E5C7FDBFB52E687770> 아카데미 토론 평가에 대한 재고찰 - 토론승패와 설득은 일치하는가 - 장혜영 (명지대) 1. 들어가는 말 토론이란 무엇일까? 토론에 대한 정의는 매우 다양하다. 안재현 과 오창훈은 토론에 대한 여러 정의들을 검토한 후 이들을 종합하 여 다음과 같이 설명하고 있다. 토론이란 주어진 주제에 대해 형 식과 절차에 따라 각자 자신의 의견을 합리적으로 주장하여 상대

More information

49-9분동안 표지 3.3

49-9분동안 표지 3.3 In the ocean, humans create many noises. These noises disturb the waters. People do not know that manmade sound harms the creatures living in the sea. In the end, disturbing the ocean affects each one

More information

2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 얄리, 보마빼 (AIi, Bomaye) 외계인간 ( 外 界 人 間 ) 한국예술종합학교 연극원 극작과 예술전문사 2005523003 안 재 승

2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 얄리, 보마빼 (AIi, Bomaye) 외계인간 ( 外 界 人 間 ) 한국예술종합학교 연극원 극작과 예술전문사 2005523003 안 재 승 2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 알리, 보마예 (Ali, Bomaye) 외계인간 ( 外 界 A 間 ) 원 사 3 승 극 문 연 전 재 E 숨 } 닮 런 예 m 안 합 과 ; 조 O 자 숨 그, 예 시 국 하 2007 학년도 하반기 졸업작품 아무도 모른다 (Nobody Knows) 얄리, 보마빼 (AIi, Bomaye)

More information

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770>

<B1E2C8B9BEC828BFCFBCBAC1F7C0FC29322E687770> 맛있는 한국으로의 초대 - 중화권 음식에서 한국 음식의 관광 상품화 모색하기 - 소속학교 : 한국외국어대학교 지도교수 : 오승렬 교수님 ( 중국어과) 팀 이 름 : 飮 食 男 女 ( 음식남녀) 팀 원 : 이승덕 ( 중국어과 4) 정진우 ( 중국어과 4) 조정훈 ( 중국어과 4) 이민정 ( 중국어과 3) 탐방목적 1. 한국 음식이 가지고 있는 장점과 경제적 가치에도

More information

Microsoft PowerPoint - CHAP-03 [호환 모드]

Microsoft PowerPoint - CHAP-03 [호환 모드] 컴퓨터구성 Lecture Series #4 Chapter 3: Data Representation Spring, 2013 컴퓨터구성 : Spring, 2013: No. 4-1 Data Types Introduction This chapter presents data types used in computers for representing diverse numbers

More information

hwp

hwp BE 8 BE 6 BE 4 BE 2 BE 0 y 17 y 16 y 15 y 14 y 13 y 12 y 11 y 10 y 9 y 8 y 7 y 6 y 5 y 4 y 3 y 2 y 1 y 0 0 BE 7 BE 5 BE 3 BE 1 BE 16 BE 14 BE 12 BE 10 y 32 y 31 y 30 y 29 y 28 y 27 y 26 y 25 y 24 y 23

More information

May 2014 BROWN Education Webzine vol.3 감사합니다. 그리고 고맙습니다. 목차 From Editor 당신에게 소중한 사람은 누구인가요? Guidance 우리 아이 좋은 점 칭찬하기 고맙다고 말해주세요 Homeschool [TIP] Famil

May 2014 BROWN Education Webzine vol.3 감사합니다. 그리고 고맙습니다. 목차 From Editor 당신에게 소중한 사람은 누구인가요? Guidance 우리 아이 좋은 점 칭찬하기 고맙다고 말해주세요 Homeschool [TIP] Famil May 2014 BROWN Education Webzine vol.3 BROWN MAGAZINE Webzine vol.3 May 2014 BROWN Education Webzine vol.3 감사합니다. 그리고 고맙습니다. 목차 From Editor 당신에게 소중한 사람은 누구인가요? Guidance 우리 아이 좋은 점 칭찬하기 고맙다고 말해주세요 Homeschool

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

` Companies need to play various roles as the network of supply chain gradually expands. Companies are required to form a supply chain with outsourcing or partnerships since a company can not

More information

Journal of Educational Innovation Research 2017, Vol. 27, No. 2, pp DOI: : Researc

Journal 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

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

272 石 堂 論 叢 49집 기꾼이 많이 확인된 결과라 할 수 있다. 그리고 이야기의 유형이 가족 담, 도깨비담, 동물담, 지명유래담 등으로 한정되어 있음도 확인하였 다. 전국적인 광포성을 보이는 이인담이나 저승담, 지혜담 등이 많이 조사되지 않은 점도 특징이다. 아울

272 石 堂 論 叢 49집 기꾼이 많이 확인된 결과라 할 수 있다. 그리고 이야기의 유형이 가족 담, 도깨비담, 동물담, 지명유래담 등으로 한정되어 있음도 확인하였 다. 전국적인 광포성을 보이는 이인담이나 저승담, 지혜담 등이 많이 조사되지 않은 점도 특징이다. 아울 271 부산지역 구비설화 이야기꾼의 현황과 특징 정 규 식* 1) - 목 차 - Ⅰ. 서론 Ⅱ. 부산지역 구비설화 이야기꾼의 전반적 현황 1. 이야기꾼의 여성 편중성 2. 구연 자료의 민요 편중성 3. 이야기꾼의 가변적 구연력 4. 이야기 유형의 제한성 5. 이야기꾼 출생지의 비부산권 강세 Ⅲ. 부산지역 구비설화 이야기꾼의 특징 Ⅳ. 결론 개 요 본고의 목적은

More information

2009년 국제법평론회 동계학술대회 일정

2009년 국제법평론회 동계학술대회 일정 한국경제연구원 대외세미나 인터넷전문은행 도입과제와 캐시리스사회 전환 전략 일시 2016년 3월 17일 (목) 14:00 ~17:30 장소 전경련회관 컨퍼런스센터 2층 토파즈룸 주최 한국경제연구원 한국금융ICT융합학회 PROGRAM 시 간 내 용 13:30~14:00 등 록 14:00~14:05 개회사 오정근 (한국금융ICT융합학회 회장) 14:05~14:10

More information

- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 Part Picture Description 5. R emove the memory by pushing the fixed-tap out and Remove the WLAN Antenna. 6. INS

- 이 문서는 삼성전자의 기술 자산으로 승인자만이 사용할 수 있습니다 Part Picture Description 5. R emove the memory by pushing the fixed-tap out and Remove the WLAN Antenna. 6. INS [Caution] Attention to red sentence 3-1. Disassembly and Reassembly R520/ 1 2 1 1. As shown in picture, adhere Knob to the end closely into the arrow direction(1), then push the battery up (2). 2. Picture

More information

<30322D28C6AF29C0CCB1E2B4EB35362D312E687770>

<30322D28C6AF29C0CCB1E2B4EB35362D312E687770> 한국학연구 56(2016.3.30), pp.33-63. 고려대학교 한국학연구소 세종시의 지역 정체성과 세종의 인문정신 * 1)이기대 ** 국문초록 세종시의 상황은 세종이 왕이 되면서 겪어야 했던 과정과 닮아 있다. 왕이 되리라 예상할 수 없었던 상황에서 세종은 왕이 되었고 어려움을 극복해 갔다. 세종시도 갑작스럽게 행정도시로 계획되었고 준비의 시간 또한 짧았지만,

More information

2 2010년 1월 15일 경상북도 직업 스쿨 운영 자격 취득 위한 맞춤형 교육 시 10곳 100명에 교육 기회 제공 본인에게 적합한 직종 스스로 선택 1인당 최고 100만원까지 교육비 지원 경상북도는 결혼이주여성 100명에게 맞춤형 취업교 육을 제공하는 결혼이민자 직

2 2010년 1월 15일 경상북도 직업 스쿨 운영 자격 취득 위한 맞춤형 교육 시 10곳 100명에 교육 기회 제공 본인에게 적합한 직종 스스로 선택 1인당 최고 100만원까지 교육비 지원 경상북도는 결혼이주여성 100명에게 맞춤형 취업교 육을 제공하는 결혼이민자 직 대구경북 다문화가족신문 2010년 1월 15일 제17호 새해 복 많이 받으세요 2010년 새해가 밝았습니다. 한국에서는 새해가 시작되면 새해 복 많이 받으세요 라는 말로 새해 첫 인사를 나누며 서로의 행복을 기원합니다. 세계 어느 나라 사람이든 새로운 해를 맞이하는 설렘은 같습니다. 며칠 지났지만 아내의 나라 말로 다정하게 새해 인사를 건네보면 어떨까 요?

More information

- iii - - i - - ii - - iii - 국문요약 종합병원남자간호사가지각하는조직공정성 사회정체성과 조직시민행동과의관계 - iv - - v - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - α α α α - 15 - α α α α α α

More information

_KF_Bulletin webcopy

_KF_Bulletin webcopy 1/6 1/13 1/20 1/27 -, /,, /,, /, Pursuing Truth Responding in Worship Marked by Love Living the Gospel 20 20 Bible In A Year: Creation & God s Characters : Genesis 1:1-31 Pastor Ken Wytsma [ ] Discussion

More information

OP_Journalism

OP_Journalism 1 non-linear consumption 2 Whatever will change television will do so by re-defining the core product not just the tools we use to consume it. by Horace Dediu, Asymco 3 re-defining the core product not

More information

74 현대정치연구 2015년 봄호(제8권 제1호) Ⅰ. 서론 2015년 1월 7일, 프랑스 파리에서 총격 사건이 발생했다. 두 명의 남성이 풍자 잡지 주간 샤를리 의 본사에 침입하여 총기를 난사한 것이다. 이 사건으로 인해 열두 명의 사람이 목숨을 잃었다. 얼마 후에

74 현대정치연구 2015년 봄호(제8권 제1호) Ⅰ. 서론 2015년 1월 7일, 프랑스 파리에서 총격 사건이 발생했다. 두 명의 남성이 풍자 잡지 주간 샤를리 의 본사에 침입하여 총기를 난사한 것이다. 이 사건으로 인해 열두 명의 사람이 목숨을 잃었다. 얼마 후에 테러와 테러리즘: 정치적 폭력의 경제와 타락에 관하여 73 테러와 테러리즘: 정치적 폭력의 경제와 타락에 관하여* 1) 공진성 조선대학교 국문요약 테러는 왜 궁극적으로 성공하지 못하며, 성공하지 못하는 테러를 사람들은 왜 자꾸 하는 걸까? 우리 시대의 안타까운 현상의 원인을 파악하기 위해서는 권력과 폭력의 관계를, 그리고 정치적 폭력이 가지는 테러적 속성을

More information

?????

????? 2013 May CONTENTS 04 06 20 23 24 28 40 44 48 49 50 52 54 56 Ideas that Move 6 SPECIAL CHEIL MAY 2013 7 Special 1 8 CHEIL MAY 2013 9 Special 2 10 CHEIL MAY 2013 11 12 CHEIL MAY 2013 13 Special 3 14 CHEIL

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,,., 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 information

#중등독해1-1단원(8~35)학

#중등독해1-1단원(8~35)학 Life Unit 1 Unit 2 Unit 3 Unit 4 Food Pets Camping Travel Unit 1 Food Before You Read Pre-reading Questions 1. Do you know what you should or shouldn t do at a traditional Chinese dinner? 2. Do you think

More information

Mary Beth Tatham Norbert Sternat 1:00 PM Al Weyer 4:00 PM Christine Buerger MASS PARTICIPATION: Families are encouraged to participate during the break as well. Altar Servers are needed! Please contact

More information

6자료집최종(6.8))

6자료집최종(6.8)) Chapter 1 05 Chapter 2 51 Chapter 3 99 Chapter 4 151 Chapter 1 Chapter 6 7 Chapter 8 9 Chapter 10 11 Chapter 12 13 Chapter 14 15 Chapter 16 17 Chapter 18 Chapter 19 Chapter 20 21 Chapter 22 23 Chapter

More information

2 동북아역사논총 50호 구권협정으로 해결됐다 는 일본 정부의 주장에 대해, 일본군 위안부 문제는 일 본 정부 군 등 국가권력이 관여한 반인도적 불법행위이므로 한일청구권협정 에 의해 해결된 것으로 볼 수 없다 는 공식 입장을 밝혔다. 또한 2011년 8월 헌 법재판소는

2 동북아역사논총 50호 구권협정으로 해결됐다 는 일본 정부의 주장에 대해, 일본군 위안부 문제는 일 본 정부 군 등 국가권력이 관여한 반인도적 불법행위이므로 한일청구권협정 에 의해 해결된 것으로 볼 수 없다 는 공식 입장을 밝혔다. 또한 2011년 8월 헌 법재판소는 일본군 위안부 피해자 구제에 관한 일고( 一 考 ) 1 일본군 위안부 피해자 구제에 관한 일고( 一 考 ) 김관원 / 동북아역사재단 연구위원 Ⅰ. 머리말 일본군 위안부 문제가 한일 간 현안으로 불거지기 시작한 것은 일본군 위안부 피해를 공개 증언한 김학순 할머니 등이 일본에서 희생자 보상청구 소송을 제 기한 1991년부터다. 이때 일본 정부는 일본군이 위안부

More information

04-다시_고속철도61~80p

04-다시_고속철도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 information

Journal of Educational Innovation Research 2019, Vol. 29, No. 1, pp DOI: (LiD) - - * Way to

Journal of Educational Innovation Research 2019, Vol. 29, No. 1, pp DOI:   (LiD) - - * Way to Journal of Educational Innovation Research 2019, Vol. 29, No. 1, pp.353-376 DOI: http://dx.doi.org/10.21024/pnuedi.29.1.201903.353 (LiD) -- * Way to Integrate Curriculum-Lesson-Evaluation using Learning-in-Depth

More information

민속지_이건욱T 최종

민속지_이건욱T 최종 441 450 458 466 474 477 480 This book examines the research conducted on urban ethnography by the National Folk Museum of Korea. Although most people in Korea

More information

untitled

untitled Logic and Computer Design Fundamentals Chapter 4 Combinational Functions and Circuits Functions of a single variable Can be used on inputs to functional blocks to implement other than block s intended

More information

,.,..,....,, Abstract The importance of integrated design which tries to i

,.,..,....,, Abstract The importance of integrated design which tries to i - - The Brand Touchpoint Analysis through Corporate Identity Typeface of Mobile Telecommunication Companies - Focusing on and - : Lee, Ka Young Dept. Lifestyle Design, Dankook University : Kim, Ji In Dept.

More information

untitled

untitled www.hyundaielevator.co.kr 2014 vol.239 07+08 BIFC(Busan International Finance Center) Korea[600mpm] www.hyundaielevator.co.kr 2014 vol.239 07 + 08 People Harmony Inside Space Ele-Cop (BIFC)[600mpm] 04-05

More information

... 수시연구 국가물류비산정및추이분석 Korean Macroeconomic Logistics Costs in 권혁구ㆍ서상범...

... 수시연구 국가물류비산정및추이분석 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

PJTROHMPCJPS.hwp

PJTROHMPCJPS.hwp 제 출 문 농림수산식품부장관 귀하 본 보고서를 트위스트 휠 방식 폐비닐 수거기 개발 과제의 최종보고서로 제출 합니다. 2008년 4월 24일 주관연구기관명: 경 북 대 학 교 총괄연구책임자: 김 태 욱 연 구 원: 조 창 래 연 구 원: 배 석 경 연 구 원: 김 승 현 연 구 원: 신 동 호 연 구 원: 유 기 형 위탁연구기관명: 삼 생 공 업 위탁연구책임자:

More information

975_983 특집-한규철, 정원호

975_983 특집-한규철, 정원호 Focused Issue of This Month Gyu Cheol an, MD Department of Otolaryngology ead & Neck Surgery, Gachon University of College Medicine E - mail : han@gilhospital.com Won-o Jung, MD Department of Otolaryngology

More information

1. 서론 1-1 연구 배경과 목적 1-2 연구 방법과 범위 2. 클라우드 게임 서비스 2-1 클라우드 게임 서비스의 정의 2-2 클라우드 게임 서비스의 특징 2-3 클라우드 게임 서비스의 시장 현황 2-4 클라우드 게임 서비스 사례 연구 2-5 클라우드 게임 서비스에

1. 서론 1-1 연구 배경과 목적 1-2 연구 방법과 범위 2. 클라우드 게임 서비스 2-1 클라우드 게임 서비스의 정의 2-2 클라우드 게임 서비스의 특징 2-3 클라우드 게임 서비스의 시장 현황 2-4 클라우드 게임 서비스 사례 연구 2-5 클라우드 게임 서비스에 IPTV 기반의 클라우드 게임 서비스의 사용성 평가 - C-Games와 Wiz Game 비교 중심으로 - Evaluation on the Usability of IPTV-Based Cloud Game Service - Focus on the comparison between C-Games and Wiz Game - 주 저 자 : 이용우 (Lee, Yong Woo)

More information

Microsoft Word - 130523 Hanwha Daily_New.doc

Microsoft Word - 130523 Hanwha Daily_New.doc Eagle eye-6488호 Today s Issue 이슈 미국 양적완화 축소 가능성 중국 HSBC PMI 제조업 지수 발표 외국인 수급 개선 여부 기상도 NOT GOOD NOT BAD GOOD 리테일정보팀ㅣ 2013. 5. 23 Market Data 주요 지표 종가 주요 지표 종가 KOSPI 1,993.83 (+0.64%) DOW 15,307.17 (-0.52%)

More information

http://www.kbc.go.kr/pds/2.html Abstract Exploring the Relationship Between the Traditional Media Use and the Internet Use Mee-Eun Kang This study examines the relationship between

More information

public key private key Encryption Algorithm Decryption Algorithm 1

public key private key Encryption Algorithm Decryption Algorithm 1 public key private key Encryption Algorithm Decryption Algorithm 1 One-Way Function ( ) A function which is easy to compute in one direction, but difficult to invert - given x, y = f(x) is easy - given

More information

274 한국문화 73

274 한국문화 73 - 273 - 274 한국문화 73 17~18 세기통제영의방어체제와병력운영 275 276 한국문화 73 17~18 세기통제영의방어체제와병력운영 277 278 한국문화 73 17~18 세기통제영의방어체제와병력운영 279 280 한국문화 73 17~18 세기통제영의방어체제와병력운영 281 282 한국문화 73 17~18 세기통제영의방어체제와병력운영 283 284

More information

<32B1B3BDC32E687770>

<32B1B3BDC32E687770> 008년도 상반기 제회 한 국 어 능 력 시 험 The th Test of Proficiency in Korean 일반 한국어(S-TOPIK 중급(Intermediate A 교시 이해 ( 듣기, 읽기 수험번호(Registration No. 이 름 (Name 한국어(Korean 영 어(English 유 의 사 항 Information. 시험 시작 지시가 있을

More information

2012 JANFEB Vol.91 0102 World Best Safety, Global INHA 2012. 01+02 C O N T E N T S Jan.Feb Vol.91 02 04 06 09 12 14 16 18 20 22 24 27 28 30 31 32 33 38 04 2012 Jan + Feb 05 06 2012 Jan + Feb 07 08 2012

More information

<3136C1FD31C8A320C5EBC7D52E687770>

<3136C1FD31C8A320C5EBC7D52E687770> 고속도로건설에 따른 지역간 접근성 변화분석 A study on the impact of new highway construction on regional accessibility The purpose of this is to analyse the interregional accessibility changes due to highway construction.

More information

[ 영어영문학 ] 제 55 권 4 호 (2010) ( ) ( ) ( ) 1) Kyuchul Yoon, Ji-Yeon Oh & Sang-Cheol Ahn. Teaching English prosody through English poems with clon

[ 영어영문학 ] 제 55 권 4 호 (2010) ( ) ( ) ( ) 1) Kyuchul Yoon, Ji-Yeon Oh & Sang-Cheol Ahn. Teaching English prosody through English poems with clon [ 영어영문학 ] 제 55 권 4 호 (2010) 775-794 ( ) ( ) ( ) 1) Kyuchul Yoon, Ji-Yeon Oh & Sang-Cheol Ahn. Teaching English prosody through English poems with cloned native intonation. The purpose of this work is to

More information

Vol.259 C O N T E N T S M O N T H L Y P U B L I C F I N A N C E F O R U M

Vol.259 C O N T E N T S M O N T H L Y P U B L I C F I N A N C E F O R U M 2018.01 Vol.259 C O N T E N T S 02 06 28 61 69 99 104 120 M O N T H L Y P U B L I C F I N A N C E F O R U M 2 2018.1 3 4 2018.1 1) 2) 6 2018.1 3) 4) 7 5) 6) 7) 8) 8 2018.1 9 10 2018.1 11 2003.08 2005.08

More information

5/12¼Ò½ÄÁö

5/12¼Ò½ÄÁö 2010년 5월호 통권 제36호 이플 은 청순하고 소박한 느낌을 주는 소리의 장점을 살려 지은 순 한글 이름으로 고객 여러분께 좋은 소식을 전해드리고자 하는 국제이주공사의 마음입니다. 늦었습니다. 봄도 늦었고, 저희 소식지도 늦었습니다. 봄 소식과 함께 전하려던 소식지가 봄 소식만큼이나 늦어져 버렸습니다. 격월로 나가던 소식지를 앞으로 분기별로 발행할 예정입니다.

More information

<C1DF3320BCF6BEF7B0E8C8B9BCAD2E687770>

<C1DF3320BCF6BEF7B0E8C8B9BCAD2E687770> 2012학년도 2학기 중등과정 3학년 국어 수업 계획서 담당교사 - 봄봄 현영미 / 시온 송명근 1. 학습 목적 말씀으로 천지를 창조하신 하나님이 당신의 형상대로 지음 받은 우리에게 언어를 주셨고, 그 말씀의 능 력이 우리의 언어생활에도 나타남을 깨닫고, 그 능력을 기억하여 표현하고 이해함으로 아름다운 언어생활 을 누릴 뿐만 아니라 언어문화 창조에 이바지함으로써

More information

4. 수업의 흐름 차시 창의 인성 수업모형에 따른 단계 수업단계 활동내용 창의 요소 인성 요소 관찰 사전학습: 날짜와 힌트를 보고 기념일 맞춰보기 호기심 논리/ 분석적 사고 유추 5 차시 분석 핵심학습 그림속의 인물이나 사물의 감정을 생각해보고 써보기 타인의 입장 감정

4. 수업의 흐름 차시 창의 인성 수업모형에 따른 단계 수업단계 활동내용 창의 요소 인성 요소 관찰 사전학습: 날짜와 힌트를 보고 기념일 맞춰보기 호기심 논리/ 분석적 사고 유추 5 차시 분석 핵심학습 그림속의 인물이나 사물의 감정을 생각해보고 써보기 타인의 입장 감정 World Special Days 1. 수업 목표 과목 영어 학년 6 학년 내용 목표 인성 목표 언어 목표 여러 기념일에 대해 알아보고 새로운 기념일을 만들고 소개할 수 있다. 소외된 사람이나 사물에 대해 생각해보고 이들에 대한 배려와 관심의 필요성을 깨달음으로써 타인의 입장에 감정 이입, 배려 등의 요소를 기를 수 있다. 기념일이나 특별한 날짜를 묻고 대답할

More information

3항사가 되기 위해 매일매일이 시험일인 듯 싶다. 방선객으로 와서 배에서 하루 남짓 지내며 지내며 답답함에 몸서리쳤던 내가 이제는 8개월간의 승선기간도 8시간같이 느낄 수 있을 만큼 항해사로써 체질마저 변해가는 듯해 신기하기도 하고 한편으론 내가 생각했던 목표를 향해

3항사가 되기 위해 매일매일이 시험일인 듯 싶다. 방선객으로 와서 배에서 하루 남짓 지내며 지내며 답답함에 몸서리쳤던 내가 이제는 8개월간의 승선기간도 8시간같이 느낄 수 있을 만큼 항해사로써 체질마저 변해가는 듯해 신기하기도 하고 한편으론 내가 생각했던 목표를 향해 HMS News Letter Hot News 16 th August. 2011 / Issue No.43 Think safety before you act! 국가인적자원개발컨소시엄 전용 홈페이지 개선 Open 국가인적자원개발컨소시엄 전용 홈페이지를 8/13(토) 새롭게 OPEN하였습니다. 금번 컨소시엄 전용 홈페이지의 개선과정에서 LMS(Learning Management

More information

11¹Ú´ö±Ô

11¹Ú´ö±Ô A Review on Promotion of Storytelling Local Cultures - 265 - 2-266 - 3-267 - 4-268 - 5-269 - 6 7-270 - 7-271 - 8-272 - 9-273 - 10-274 - 11-275 - 12-276 - 13-277 - 14-278 - 15-279 - 16 7-280 - 17-281 -

More information

歯kjmh2004v13n1.PDF

歯kjmh2004v13n1.PDF 13 1 ( 24 ) 2004 6 Korean J Med Hist 13 1 19 Jun 2004 ISSN 1225 505X 1) * * 1 ( ) 2) 3) 4) * 1) ( ) 3 2) 7 1 3) 2 1 13 1 ( 24 ) 2004 6 5) ( ) ( ) 2 1 ( ) 2 3 2 4) ( ) 6 7 5) - 2003 23 144-166 2 2 1) 6)

More information

<B3EDB9AEC1FD5F3235C1FD2E687770>

<B3EDB9AEC1FD5F3235C1FD2E687770> 오용록의 작품세계 윤 혜 진 1) * 이 논문은 생전( 生 前 )에 학자로 주로 활동하였던 오용록(1955~2012)이 작곡한 작품들을 살펴보고 그의 작품세계를 파악하고자 하는 것이다. 한국음악이론이 원 래 작곡과 이론을 포함하였던 초기 작곡이론전공의 형태를 염두에 둔다면 그의 연 구에서 기존연구의 방법론을 넘어서 창의적인 분석 개념과 체계를 적용하려는

More information

<BFACBCBCC0C7BBE7C7D02831302031203139292E687770>

<BFACBCBCC0C7BBE7C7D02831302031203139292E687770> 延 世 醫 史 學 제12권 제2호: 29-40, 2009년 12월 Yonsei J Med Hist 12(2): 29-40, 2009 특집논문 3 한국사회의 낙태에 대한 인식변화 이 현 숙 이화여대 한국문화연구원 1. 들어가며 1998년 내가 나이 마흔에 예기치 않은 임신을 하게 되었을 때, 내 주변 사람들은 모두 들 너무나도 쉽게 나에게 임신중절을 권하였다.

More information

IKC43_06.hwp

IKC43_06.hwp 2), * 2004 BK21. ** 156,..,. 1) (1909) 57, (1915) 106, ( ) (1931) 213. 1983 2), 1996. 3). 4) 1),. (,,, 1983, 7 12 ). 2),. 3),, 33,, 1999, 185 224. 4), (,, 187 188 ). 157 5) ( ) 59 2 3., 1990. 6) 7),.,.

More information

16-기06 환경하중237~246p

16-기06 환경하중237~246p Study on Jointing System of Airport Concrete Pavement Considering Environmental Loading The environmental load on concrete pavement can be categorized into temperature and moisture loads which include

More information

제34호 ISSN 1598-7566 충청감사와 갑오년의 충청도 상황 신 영 우 2015. 3. 동학학회 충청감사와 갑오년의 충청도 상황 신영우* 국문초록 이 논문은 충청감사의 시각에서 갑오년을 파악하려는 목적으로 작성한 글 이다. 지금까지 군현이나 권역 단위의 사례연구는 나왔으나 도( 道 ) 단위로 살 펴본 적은 없지만 충청도는 동학농민군의 세력

More information

<C7D1B9CEC1B7BEEEB9AEC7D0363528C3D6C1BE295F31392EB9E8C8A3B3B22E687770>

<C7D1B9CEC1B7BEEEB9AEC7D0363528C3D6C1BE295F31392EB9E8C8A3B3B22E687770> 정지용의 시어 조찰한 의 의미 변화 연구 배호남 *1) 차례 Ⅰ. 머리말 Ⅱ. 종교적 순수성의 정신세계 : 勝 利 者 金 안드레아 의 경우 Ⅲ. 차가운 겨울밤의 정신세계 : 溫 井 과 長 壽 山 1 의 경우 Ⅳ. 명징한 여름 낮의 정신세계 : 白 鹿 潭 의 경우 Ⅴ. 맺음말 국문초록 본 논문은 정지용 연구의 새로운 지평으로 개별 작품에서 보다 더 미시적으로

More information

새천년복음화연구소 논문집 제 5 권 [특별 기고] 說 敎 의 危 機 와 展 望 조재형 신부 한국천주교회의 새로운 복음화에 대한 小 考 정치우 복음화학교 설립자, 교장 [심포지엄] 한국 초기 교회와 순교영성 한반도 평화통일과 한국 교회의 과제 교황 방한의 메시지와 복음의

새천년복음화연구소 논문집 제 5 권 [특별 기고] 說 敎 의 危 機 와 展 望 조재형 신부 한국천주교회의 새로운 복음화에 대한 小 考 정치우 복음화학교 설립자, 교장 [심포지엄] 한국 초기 교회와 순교영성 한반도 평화통일과 한국 교회의 과제 교황 방한의 메시지와 복음의 새천년복음화연구소 논문집 제 5 권 [특별기고] 說 敎 의 危 機 와 展 望 조재형 신부 한국천주교회의 새로운 복음화에 대한 小 考 정치우 복음화학교 설립자, 교장 [심포지엄] 한국 초기 교회와 순교영성 한반도 평화통일과 한국 교회의 과제 교황 방한의 메시지와 복음의 기쁨 에 나타난 한국 교회의 쇄신과 변화 복음의 기쁨 과 사회복음화 과제 새천년복음화연구소

More information

영어-중2-천재김-07과-어순-B.hwp

영어-중2-천재김-07과-어순-B.hwp Think Twice, Think Green 1 도와드릴까요? Listen and Speak 1 (I / you / may / help) 130,131 15 이 빨간 것은 어때요? (this / how / red / about / one) 16 오, 저는 그것이 좋아요. (I / it / oh / like) 2 저는 야구 모자를 찾고 있는데요. (a / looking

More information

<31325FB1E8B0E6BCBA2E687770>

<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 information

대한한의학원전학회지24권6호-전체최종.hwp

대한한의학원전학회지24권6호-전체최종.hwp 小兒藥證直訣 의 五臟辨證에 대한 小考 - 病證과 處方을 중심으로 1 2 慶熙大學校大學校 韓醫學科大學 原典學敎室 ㆍ 韓醫學古典硏究所 白裕相1,2*1)2) A study on The Diagnosis and Treatment Using The Theory of Five Organs in Soayakjeungjikgyeol(小兒藥證直訣) 1 Dept. of Oriental

More information

Journal of Educational Innovation Research 2016, Vol. 26, No. 2, pp DOI: * Experiences of Af

Journal of Educational Innovation Research 2016, Vol. 26, No. 2, pp DOI:   * Experiences of Af Journal of Educational Innovation Research 2016, Vol. 26, No. 2, pp.201-229 DOI: http://dx.doi.org/10.21024/pnuedi.26.2.201608.201 * Experiences of After-school Class Caring by Married Early Childhood

More information

012임수진

012임수진 Received : 2012. 11. 27 Reviewed : 2012. 12. 10 Accepted : 2012. 12. 12 A Clinical Study on Effect of Electro-acupuncture Treatment for Low Back Pain and Radicular Pain in Patients Diagnosed with Lumbar

More information

10송동수.hwp

10송동수.hwp 종량제봉투의 불법유통 방지를 위한 폐기물관리법과 조례의 개선방안* 1) 송 동 수** 차 례 Ⅰ. 머리말 Ⅱ. 종량제봉투의 개요 Ⅲ. 종량제봉투의 불법유통사례 및 방지대책 Ⅳ. 폐기물관리법의 개선방안 Ⅴ. 지방자치단체 조례의 개선방안 Ⅵ. 결론 국문초록 1995년부터 쓰레기 종량제가 시행되면서 각 지방자치단체별로 쓰레기 종량제 봉투가 제작, 판매되기 시작하였는데,

More information

ºÎ·ÏB

ºÎ·ÏB B B.1 B.2 B.3 B.4 B.5 B.1 2 (Boolean algebra). 1854 An Investigation of the Laws of Thought on Which to Found the Mathematical Theories of Logic and Probabilities George Boole. 1938 MIT Claude Sannon [SHAN38].

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

More information

<31372DB9CCB7A1C1F6C7E22E687770>

<31372DB9CCB7A1C1F6C7E22E687770> 미래지향 고령친화 주거디자인을 위한 예비노인층의 라이프스타일 특성 Characteristics of Lifestyle of the Pre-Elderly for Future Elderly-friendly Housing Design 류 혜 지 청운대학교 인테리어디자인학과 교수 Ryu hye-ji Dept. of Interior Design, Chungwoon University

More information