Git Product home page Git Product logo

Comments (2)

mjyan0720 avatar mjyan0720 commented on June 19, 2024

Sorry for replying late.

Yes, you can use different configurations IS-Sp/Fu-Sp etc on the same checkpoints.
You can generate a checkpoint using "--take-checkpoints=N --at-instruction" if you want to skip the first N instructions. Please consult complete commands you should use from the gem5 mannual website.
Then you can do detailed simulation using "--checkpoint-restore=N --at-instruction --maxinsts=M" if you want to do detailed simulation for M instructions.
Hope it helps.

from invisispec-1.0.

mytbk avatar mytbk commented on June 19, 2024

Thanks. I'm now using AtomicSimpleCPU to make a checkpoint.
I think it's also needed to set the ruby cache parameters, I think the configuration in the paper is:

diff --git a/configs/ruby/MESI_Two_Level.py b/configs/ruby/MESI_Two_Level.py
index 65d711e5e..44118be2d 100644
--- a/configs/ruby/MESI_Two_Level.py
+++ b/configs/ruby/MESI_Two_Level.py
@@ -37,8 +37,13 @@ from Ruby import send_evicts
 #
 # Declare caches used by the protocol
 #
-class L1Cache(RubyCache): pass
-class L2Cache(RubyCache): pass
+class L1Cache(RubyCache):
+    tagAccessLatency = 1
+    dataAccessLatency = 1
+
+class L2Cache(RubyCache):
+    tagAccessLatency = 8
+    dataAccessLatency = 8
 
 def define_options(parser):
     return

from invisispec-1.0.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.