Giter Site home page Giter Site logo

srnn-pcm's People

Contributors

yigitdemirag avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

srnn-pcm's Issues

RESET function update

We noticed a minor bug in the initial version of the 'xbar.reset()` function. This bug is an implementation error, and the paper results are obtained using this old version of the function.

Specifically, the bug causes the device to prevent reinitialization of the programming time variable,tp, to the time of application of the RESET pulse and instead reinitialises tp to 0.

This bug is not so critical because, during e-prop training experiments, we always SET the PCM device just after applying a RESET pulse, which has been updating (hence correcting) the tp variable.

Old version (used in the paper)

    def reset(self, mask, G0=0.1):
        self.Pmem[mask] = 1
        self.tp[mask] = 0 
        self.count[mask] = 0
        self.G[mask] = torch.normal(G0, G0 * 0.1, ((torch.sum(mask),)), device=self.device).clamp(1e-2, self.Gmax)
        self.tracker[mask[:,0,:,:]] = 0 

Corrected version

    def reset(self, tp, mask, G0=0.1):
        ''' Emulates a masked RESET operation on the PCM crossbar.

        Args:
            mask : Mask for selecting PCM device
            G0   : Initial conductance value
        '''
        self.Pmem[mask] = 1
        self.tp[mask] = tp # Please read Issue #1 for more details regarding the change in this line for replication of the results. 
        self.count[mask] = 0
        self.G[mask] = torch.normal(G0, G0 * 0.1, ((torch.sum(mask),)), device=self.device).clamp(1e-2, self.Gmax)
        self.tracker[mask[:,0,:,:]] = 0 

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.