GithubHelp home page GithubHelp logo

Comments (4)

gergol avatar gergol commented on July 20, 2024

It turns out that it works with using M = mask_t<Array<bool, 8>>;. Maybe I do not fully understand the proper use of masks (unfortunately I have no experience with SIMD yet), so if this is not a bug, it could be helpful to add a short section in the docs how to properly create masks manually.

from enoki.

wjakob avatar wjakob commented on July 20, 2024

Hi Gergol,

the problem is the way in which you manually create a mask, which is basically an implementation detail of the underlying implementation. A mask is a 1-bit value per lane on some targets (AVX512 K mask registers), a 1 byte boolean on other targets, and a full 32 bit value on AVX/AVX2. So for this specific target, you would have to use 0xffffffff instead of 1. Arguably the constructor for masks could be implemented in a nicer way so that it unifies these cases. Then, on the other hand, creating a mask by hand in this way is probably a fairly obscure use case.

Best,
Wenzel

from enoki.

wjakob avatar wjakob commented on July 20, 2024

(Normally masks are the result of some actual computation, in which case they will naturally have the right representation.)

from enoki.

gergol avatar gergol commented on July 20, 2024

Hi Wenzel!

Thanks for the quick reply! The confusing thing is that all masks look identical (containing 1s and 0s) when printed, even if they show different behaviour. Looking at them with the debugger revealed what you wrote in your first post. My use case was to try to write into the odd/even values of a packet to calculate the magnitudes of the interleaved complex STFT result from my other issue.

from enoki.

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.