Giter Site home page Giter Site logo

krr-stack-algorithm's Introduction

KRR Stack Algorithm

This is a new probabilistic stack algorithm named KRR which can be used to accurately model random sampling based-LRU under arbitrary sampling size K (K-LRU).

The KRR model is first described in:

Efficient Modeling of Random Sampling-Based LRU(ICPP'21)

The directory src/basic_version contains the basic model described in ICPP'21 paper.

The (src/KRR_mult_ops.c, inc/KRR_mult_ops.h) is the extended version of the original KRR model:

  • The new version support variable object size miss ratio curve generation while maintain same asymptotic complexity.
  • The new version support multiple different software cache commands includes: GET, SET, UPDATE, DELETE. (In contrast, the old version follows the original stack(cache) access definition).

compile and run example

create variable object size aware KRR

make

create logic(uniform) object size KRR

make UNIFORM=yes

How to use KRR for mrc generation

{
  //k = k-lru's sampling size K
  //stack init
  KRR_Stack_t* stack = stackInit(k);


  while (workload_not_finished)
  {

      key = //key of current kv pair
      size = //size of current kv pair
      command = //"GET", "SET", "UPDATE", "DELETE" 
      stack_distance = KRR_access(stack, key, size, command);

      //record stack distance
  }

  stackFree(stack);

  //generate MRC using stack distance distribution
}

lib/src/spatial_sampling.c shows examples of how to feed spatially filtered traces to KRR model.

krr-stack-algorithm's People

Contributors

jyang1997 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

blitheyu

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.