From 29c45ccd2322470d0d6cef0ae20600c8c68f97e9 Mon Sep 17 00:00:00 2001 From: Brad Beckmann Date: Fri, 20 Aug 2010 11:46:12 -0700 Subject: ruby: Reduced ruby latencies The previous slower ruby latencies created a mismatch between the faster M5 cpu models and the much slower ruby memory system. Specifically smp interrupts were much slower and infrequent, as well as cpus moving in and out of spin locks. The result was many cpus were idle for large periods of time. These changes fix the latency mismatch. --- src/mem/protocol/MOESI_CMP_token-L1cache.sm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mem/protocol/MOESI_CMP_token-L1cache.sm') diff --git a/src/mem/protocol/MOESI_CMP_token-L1cache.sm b/src/mem/protocol/MOESI_CMP_token-L1cache.sm index 4af3338d8..8424479bd 100644 --- a/src/mem/protocol/MOESI_CMP_token-L1cache.sm +++ b/src/mem/protocol/MOESI_CMP_token-L1cache.sm @@ -41,7 +41,7 @@ machine(L1Cache, "Token protocol") int l1_request_latency = 2, int l1_response_latency = 2, int retry_threshold = 1, - int fixed_timeout_latency = 300, + int fixed_timeout_latency = 100, bool dynamic_timeout_enabled = true { -- cgit v1.2.3