python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is it possible to do an aligned alllocation in a constexpr context?
I have some code that requires a vector to be SIMD aligned and I'm using an aligned allocator from a library as an allocator to implement that, but this allocator has no constexpr support. Would it be...
Andreas Loanjoe
Votes: 0
Answers: 0
Can OpenMP's SIMD directive vectorize indexing operations?
Say I have an MxN matrix (SIG) and a list of Nx1 fractional indices (idxt). Each fractional index in idxt uniquely corresponds to the same position column in SIG. I would like to index to the appropri...
drakon101
Votes: 0
Answers: 2
Conditional import of Java Vector API
I am playing around with Vector API in JDK 17.
Since it is not available on older version of Java, I wonder if it is possible to conditionally import it. So that if Vector API is available, then Java ...
stgatilov
Votes: 0
Answers: 0
IF condition is TRUE, then CHANGE to VALUE function for XMM / SIMD
I'm currently doing a SIMD task for Assembly.
.data
minValue real4 0.0, 0.0, 0.0, 0.0
ChangeValue PROC
;Here is another code, not important right now
movups xmm0, [minValue]
;XMM1 = 00000...
Przemyslaw Beskosty
Votes: 0
Answers: 0