TLB miss してpage が実メモリにあった場合の平均page-falut処理時間が1μ sec, memory access 1.0n sec の時に、page fault rate が、1% の時の effective access time を求めよ。 effective access time = (1-0.01)*1 + 0.01*1000 = 10.99n sec TLB miss してpage が仮想メモリにあった場合の平均page-falut処理時間が1m sec, memory access 1.0n sec の時に、page fault rate が、0.001% の時の effective access time を求めよ。 effective access time = (1-0.001)*1 + 0.001*1000000 = 1000.999n sec 実メモリ上のpage fault rate が、0.001% の時の effective access time を求めよ。 effective access time = (1-0.001)*1 + 0.001*1000 = 1.999n sec 性能低下を 20%以下にするためには、page fault rate はいくらでなければならないか。 { (1-p)*1 + p*1000 -1 } /1 <= 0.2 p <= 0.0002002