Package jline.api.cache
Class Cache_erec
java.lang.Object
jline.api.cache.Cache_erec
-
Method Summary
Modifier and TypeMethodDescriptionstatic Matrixcache_erec(Matrix gamma, Matrix m) Computes the cache miss rate using an exact recursive method.static Matrixcache_erec_aux(Matrix gamma, Matrix m, int k) Auxiliary method for computing the cache miss rate using an exact recursive method.
-
Method Details
-
cache_erec
Computes the cache miss rate using an exact recursive method.- Parameters:
gamma- Matrix representing the cache access factors.m- Matrix representing the cache capacity vector.- Returns:
- Matrix containing the computed cache miss rates.
-
cache_erec_aux
Auxiliary method for computing the cache miss rate using an exact recursive method.- Parameters:
gamma- Matrix representing the cache access factors.m- Matrix representing the cache capacity vector.k- Integer representing the current number of rows in the recursive step.- Returns:
- Matrix containing the computed cache miss rates.
-