The intrinsics tag has no wiki summary.
1
vote
1answer
45 views
Converting arm code to use NEON intrinsics
I have been trying to modify the code beneath to work with NEON Intrinsics, thereby creating a speedup. Unfortunately nothing seems to work correctly. Does anyone have any idea what is going wrong? I ...
0
votes
1answer
33 views
Is there separate intrinsic for bitset64 in Visual Studio C compiler?
I need to set nth bit of 64 bit integer to 1;
There is an intrinsic (documented here http://msdn.microsoft.com/en-us/library/z56sc6y4(v=vs.90).aspx) :
unsigned char _bittestandset64(
__int64 *a,
...
3
votes
1answer
110 views
How to load two sets of 4 shorts into an XMM register?
I'm just getting started with SSE intrinsics using Visual C++ 2012 and I need some pointers (no pun intended).
I have two arrays containing 4 signed shorts each (each array is thus 64-bit, totalling ...
1
vote
2answers
59 views
SIMD and Difference between packed and scalar double precision
I am reading Intel's intrinsics guide while implementing SIMD support. I have a few confusions and my questions are as below.
__m128 _mm_cmpeq_ps (__m128 a, __m128 b) documentation says it is used ...
0
votes
1answer
30 views
Doesn't SVG support auto width and height for images?
In HTML image element can be created without dimensions specified. It will have intrinsic width and height:
<img src="me.jpg" alt="">
However, in SVG image without dimension attributes will ...
2
votes
1answer
95 views
SSE Intrinsics: Fastest way to test for all 0s or 1s?
I have developed a Mandelbrot generator for Windows which I have just converted to use SSE Intrinsics. To detect the end of the iterations, in normal arithmetic I do a greater than compare and break ...
0
votes
1answer
85 views
cuda intrinsic functions sqrtf and powf performance issues
when i convert from powf to __powf it gives performance improvement to me. but if i convert sqrtf to one of which __fsqrt_[rn,rz,ru,rd] it slows down. I think they should run at least as fast as ...
0
votes
0answers
61 views
Analysis of Camera Calibration results and strange 3D coordinates after rotation,translation extraction
I did the camera calibration with Matlab ToolBox. I took 6 images with an iPhone 4S with camera details as following:
The images are about ~2 MB in JPEG format with following details:
Here is ...
0
votes
0answers
86 views
x86-64 vectorised integer array comparison/ lookup table
I am trying to write a look up table of int keys to int objects.
The keys are integers in the range of 0 to MAX_INT and the objects are in the range of 0 to 31.
So an int key would map to any of the ...
2
votes
1answer
42 views
Why does __inbyte crash my software?
I came across this function and I wanted to know what does it do, so I wrote the following, compiled with mingw32 and executed under Wine and Windows, on both of which the program crashed.
#include ...
1
vote
2answers
36 views
Is using a stride of 1 still critical to vDSP performance today?
In a helpful but somewhat dated November, 2006 article on vectorizing code with vDSP, the author makes the statement:
Important to keep in mind is the fact that only operations with
strides ...
6
votes
3answers
167 views
What's the proper way to use different versions of SSE intrinsics in GCC?
I will ask my question by giving an example. Now I have a function called do_something().
It has three versions: do_something(), do_something_sse3(), and do_something_sse4(). When my program runs, it ...
1
vote
2answers
61 views
Write-combining: which cache line is avoided to be read before written?
Regarding non-temporal writes and write-combining techniques, I have the following code
void setbytes(char *p, int c)
{
__m128i i = _mm_set_epi8(c, c, c, c,
c, c, c, c,
c, c, c, c,
c, c, c, c);
...
0
votes
1answer
93 views
Subtracting two images using NEON
I'm trying to subtract two images(grayscaled) by using Neon intrinsics as an exercise, I don't know what is the best way to subtract two vectors using the C intrinsics.
void ...
4
votes
0answers
127 views
SSE _mm_load_pd works while _mm_store_pd segfaults
I am trying to learn the ropes of SSE intrinsics in C. I have a piece of code where I load a two-component vector of double data, add something to it and then attempt to store it back to memory.
...
0
votes
1answer
80 views
NEON simple vector assignment intrinsic?
Having r1,r3 and r4 of type uint32x4_t loaded into NEON registers I have the following code:
r3 = veorq_u32(r0,r3);
r4 = r1;
r1 = vandq_u32(r1,r3);
r4 = veorq_u32(r4,r2);
r1 = ...
2
votes
1answer
80 views
Determine CPUID as listed in the Intel Intrinsics Guide
In the Intel Intrinsics Guide there are 'Latency and Throughput Information' at the bottom of several Intrinsics, listing the performance for several CPUID(s).
For example, the table in the ...
1
vote
1answer
183 views
C++ SSE2 intrinsics
I just learned that there's a way to achieve some parallelization using intrinsics. I found the following code and wanted to go through it but I could understand much. I was trying make the operations ...
4
votes
1answer
161 views
SSE3 intrinsics: How to find the maximum of a large array of floats
I have the following code to find the maximum value
int length = 2000;
float *data;
// data is allocated and initialized
float max = 0.0;
for(int i = 0; i < length; i++)
{
if(data[i] > max)
...
1
vote
2answers
105 views
LLVM: Cannot select: intrinsic %llvm.spu.si.sf
I am getting this error
> clang -std=c99 -c derivative.c -o derivative.a
fatal error: error in backend: Cannot select: intrinsic %llvm.spu.si.sf
when I try to compile this simple C program with ...
0
votes
1answer
92 views
Visual Studio 2010 x64 __setReg Equivalent Compiler Intrinsic
I have an application I have written in C where I really need to modify the value of one of the processor registers before calling a function. Normally I would do this with inline assembly, but as we ...
1
vote
0answers
110 views
GCC intrinsics alignment problems
I have a disturbing problem implementing a simple, non parallel average method using g++ intrinsics. Here the relevant c++ part, where p_oNumPoints is the length of the array p_pValues, which itself ...
2
votes
1answer
136 views
Not able to load Floating point Values using NEON Intrinsics
I am not able to load floating point values in to NEON 128 bit registers no matter what!
I tried every possible way to load floating point numbers but the registers remain zero (found via ...
8
votes
2answers
201 views
Why and when to use __noop?
I was reading about __noop and the MSDN example is
#if DEBUG
#define PRINT printf_s
#else
#define PRINT __noop
#endif
int main() {
PRINT("\nhello\n");
}
and I don't see the gain over ...
1
vote
0answers
132 views
How does non temporal instructions work?
I'm reading What Every Programmer Should Know About Memory pdf by Ulrich Drepper. At the beginning of part 6 theres's a code fragment:
#include <emmintrin.h>
void setbytes(char *p, int c)
{
...
-5
votes
1answer
152 views
Fill with/without intrinsics C++
I'm studying intrinsic functions impact on performance, and I'm a little bit confused: they seem to have no impact at all! I'm trying to fill an array of doubles with two different functions and I see ...
2
votes
1answer
247 views
Scatter intrinsics in AVX
I can't find them in the Intel Intrinsic Guide v2.7. Do you know if AVX or AVX2 instruction sets support them?
1
vote
4answers
136 views
OpenMP atomic _mm_add_pd
I'm trying to use OpenMP for parallelization of an already vectorized code with intrinsics, but the problem is that I'm using one XMM register as an outside 'variable' that I increment each loop. For ...
6
votes
3answers
290 views
Summing 3 lanes in a NEON float32x4_t
I'm vectorizing an inner loop with ARM NEON intrinsics (llvm, iOS). I'm generally using float32x4_ts. My computation finishes with the need to sum three of the four floats in this vector.
I can drop ...
2
votes
2answers
185 views
Data type compatibility with NEON intrinsics
I am working on ARM optimizations using the NEON intrinsics, from C++ code. I understand and master most of the typing issues, but I am stuck on this one:
The instruction vzip_u8 returns a ...
1
vote
2answers
252 views
SSE operation on 4 arrays of integer size
Sorry for the previous non-descriptive question. Please allow me to rephrase the question again:
The setup:
I need to do ADD and some bit wise operations of 4 32-bit values from 4 arrays at the same ...
0
votes
1answer
138 views
How to use intrinsics for inline assemby in C++?
I try to port a C++ tool to x64 in VS2005. The problem is, that the code contains inline assembly, which is not supported by the 64bit compiler. My question is, if there is much more effort to code it ...
0
votes
1answer
140 views
SIMD Intrinsics and Pointers
Everything I've read about using C/C++ intrinsic types for SIMD capabilities like MMX and SSE indicate that you should use those as opaque types and not reference the internals directly.
However, ...
2
votes
1answer
467 views
print a __m128i variable
I'm trying to learn to code using intrinsics and below is a code which does addition
compiler used: icc
#include<stdio.h>
#include<emmintrin.h>
int main()
{
__m128i a = ...
0
votes
1answer
186 views
SSE Comparison Intrinsics - How to get 1 or 0 from a comparison?
I am trying to write the equivalent of an if statement with SSE intrinsics.
I am using __m128 _mm_cmplt_ps(__m128 a, __m128 b) to do the comparison a < b, and this returns 0xffffffff or 0x0 if the ...
0
votes
2answers
319 views
How to sum __m256 horizontally?
I would like to horizontally sum the components of a __m256 vector using AVX instructions.
In SSE I could use
_mm_hadd_ps(xmm,xmm);
_mm_hadd_ps(xmm,xmm);
to get the result at the first component of ...
2
votes
3answers
375 views
assembly intrinsic to do a masked load
int main()
{
const int STRIDE=2,SIZE=8192;
int i=0;
double u[SIZE][STRIDE];
#pragma vector aligned
for(i=0;i<SIZE;i++)
{
u[i][STRIDE-1]= i;
}
...
2
votes
1answer
167 views
Converting inline ASM to intrinsic for x64 igraph
I'm compiling from source the python extension IGRAPH for x64 instead of x86 which is available in the distro. I have gotten it all sorted out in VS 2012 and it compiles when I comment out as follows ...
3
votes
2answers
201 views
How to access components of the 256 bit ps vector
How to efficiently access the elements of the 256-bit vector? For example I calculated the dot product with
c = _mm256_dp_ps(a, b, 0xff);
How to access the value in c then? I need to get both high ...
1
vote
1answer
232 views
_mm_extract_epi8(…) intrinsic that takes a non-literal integer as argument
I've lately been using the SSE intrinsic int _mm_extract_epi8 (__m128i src, const int ndx) that, according to the reference "extracts an integer byte from a packed integer array element selected by ...
2
votes
1answer
270 views
Beat the compiler
I'm trying to use Intel intrinsics to beat the compiler optimized code. Sometimes I can do it, other times I can't.
I guess the question is, why can I sometimes beat the compiler, but other times ...
7
votes
3answers
564 views
Get member of __m128 by index?
I've got some code, originally given to me by someone working with MSVC, and I'm trying to get it to work on CLang. Here's the function that I'm having trouble with:
float vectorGetByIndex( __m128 V, ...
11
votes
3answers
621 views
SSE, intrinsics, and alignment
I've written a 3D vector class using a lot of SSE compiler intrinsics. Everything worked fine until I started to instatiate classes having the 3D vector as a member with new. I experienced odd crashes ...
4
votes
1answer
207 views
simd vector access
i'm new to SIMD programming and i have some basic questions i can't seem to figure out after looking into the topic for some days now.
the code i want to optimize is basically a simple but large ...
4
votes
2answers
574 views
How to load a pixel struct into an SSE register?
I have a struct of 8-bit pixel data:
struct __attribute__((aligned(4))) pixels {
char r;
char g;
char b;
char a;
}
I want to use SSE instructions to calculate certain things on ...
7
votes
1answer
536 views
How to rotate an SSE/AVX vector
I need to perform a rotate operation with as little clock cycles as possible.
In the first case let's assume __m128i as source and dest type:
source: || A0 || A1 || A2 || A3 ||
dest: || A1 || A2 ...
2
votes
2answers
614 views
Using ARM NEON intrinsics to add alpha and permute
I'm developing an iOS app that needs to convert images from RGB -> BGRA fairly quickly. I would like to use NEON intrinsics if possible. Is there a faster way than simply assigning the components?
...
5
votes
1answer
116 views
How should I pass SSE data to my functions/operators?
I'm writing a couple wrapper classes for the SSE Intrinsics - mostly to get type-safe geometry operations, but also to add a couple convenience functions. All my functions and operators are inline. ...
2
votes
2answers
199 views
Efficient algorithm to convert(sum) 128-bit data in q-register to 16-bit data
I have 128-bit data in q-register. I want to sum the individual 16-bit block in this q-register to finally have a 16-bit final sum (any carry beyond 16-bit should be taken and added to the LSB of this ...
5
votes
4answers
765 views
Is it possible to cast floats directly to __m128 if they are 16 byte alligned?
Is it safe/possible/advisable to cast floats directly to __m128 if they are 16 byte aligned?
I noticed using _mm_load_ps and _mm_store_ps to "wrap" a raw array adds a significant overhead.
What are ...
