Giter Club home page Giter Club logo

Comments (4)

can1357 avatar can1357 commented on May 31, 2024

You can add it to the directives list, something like { (A*(A+1))&1, 0 } should work, ideally something more generic would be better but can't think of any other properties.

from vtil-core.

MoePus avatar MoePus commented on May 31, 2024

thank you. make it
{ (A * (A + B)) & 1, __iff(urem(B,2) == 1, 0) },
{ (A * (A - B)) & 1, __iff(urem(B,2) == 1, 0) },
and here is my implementation of operator multiply and umultiply
MoePus@9cc1a5c
if all thing is right.you can merge it.

from vtil-core.

can1357 avatar can1357 commented on May 31, 2024
{ (A * (A + U)) & 1, __iff(U&1,0) },
{ (A * (A - U)) & 1, __iff(U&1,0) },

Should be the fastest option, if you send a PR i'll merge it, looks good to me!

from vtil-core.

MoePus avatar MoePus commented on May 31, 2024

i finally made it this

        { (A * (A + U)),      __iff(U & 1, (A * (A + U)) & 0xfffffffffffffffe) },
        { (A * (A - U)),       __iff(U & 1, (A * (A + U)) & 0xfffffffffffffffe) },

since the compiled code is not always div or and reg, 1 ,it may be test reg, 1

from vtil-core.

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.