From c158ce22bf4827394708824539f5905c7ea16681 Mon Sep 17 00:00:00 2001 From: Jarvis Jia Date: Mon, 10 Jun 2024 14:09:09 -0500 Subject: [PATCH] gpu-compute: Added functions to choose replacement policies for GPU Adding RP_choose function to change replacement policies among TreePLRU, LRU, FIFO, LFU, LIP, MRU, NRU, RRIP, SecondChance AND ShiPMem replacement policies for TCC, TCP and SQC caches for GPU --- configs/ruby/GPU_VIPER.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/configs/ruby/GPU_VIPER.py b/configs/ruby/GPU_VIPER.py index e453578e15..529ecac1b2 100644 --- a/configs/ruby/GPU_VIPER.py +++ b/configs/ruby/GPU_VIPER.py @@ -1132,8 +1132,6 @@ def RP_choose(test_name): replacement_policy = LRURP() elif test_name == 'FIFORP': replacement_policy = FIFORP() - elif test_name == 'LRURP': - replacement_policy = LRURP() elif test_name == 'LFURP': replacement_policy = LFURP() elif test_name == 'LIPRP':