Commit 9586f8aa authored by Davis King's avatar Davis King

Optimized the kernel cache usage slightly.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402909
parent 46f1ac9b
......@@ -208,7 +208,16 @@ namespace dlib
if (is_cached(i) == false)
add_col_to_cache(i);
return &cache(lookup(i),0);
// find where this column is in the cache
long idx = lookup(i);
if (idx == next)
{
// if this column was the next to be replaced
// then make sure that doesn't happen
next = (next + 1)%cache.nr();
}
return &cache(idx,0);
}
const scalar_type* diag() const { return &diag_cache(0); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment