chipsalliance / VeeR-ISS

Apache License 2.0
114 stars 33 forks source link

Is the cache enabled in whisper? #18

Open divastor opened 2 years ago

divastor commented 2 years ago

Memory::configureCache is used only once, in:

bool
Hart<URV>::configureCache(uint64_t size, unsigned lineSize,
                          unsigned setSize)
{
  return memory_.configureCache(size, lineSize, setSize);
}

but Hart<URV>::configureCache is never used. The cache doesn't seem to be enabled by default. Is there a way to enable it?