Code Monkey home page Code Monkey logo

Comments (1)

grasshoper97 avatar grasshoper97 commented on July 24, 2024

in the function tag_array::probe() in file gpu-cache.cc
142 if (line->m_status != RESERVED) {//-at least one is not RESERVED, all_reserved = false;means one can be evict.
143 all_reserved = false;
144 if (line->m_status == INVALID) {
145 invalid_line = index; //- the cache has a blank line, can be allocte to the quest if miss.
146 } else {
147 //- valid line : keep track of most appropriate replacement candidate. select a cadidate line if miss.
148 if ( m_config.m_replacement_policy == LRU ) {
149 if ( line->m_last_access_time < valid_timestamp ) {//-find a line with earlyest access time
150 valid_timestamp = line->m_last_access_time;
151 valid_line = index;
152 }
153 } else if ( m_config.m_replacement_policy == FIFO ) {
154 if ( line->m_alloc_time < valid_timestamp ) { //-find a line with earlyest alloc time
155 valid_timestamp = line->m_alloc_time;
156 valid_line = index;
157 }
158 }
159 }
160 }

gpusim implement LRU/FIFO by record the access time/allocate time of a cache-line.

from gpgpu-sim_distribution.

Related Issues (20)

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.