Most voted "sse" questions
SSE (Streaming SIMD Extensions, originally called ISSE, Internet Streaming SIMD Extensions) is a SIMD (Single Instruction, Multiple Data) or (Single Instruction, Multiple Data) Computational Unit designed by Intel and introduced in 1999 in its Pentium III series of processors as a response to 3DNow! of AMD’s (which was released a year earlier).
Learn more…3 questions
Sort by count of
-
6
votes3
answers1655
viewsHow to verify which technologies the CPU supports at runtime?
I am writing a program for PC that has optimized function calls for SSE2, SSE3 and maybe SSE4. However, I cannot guarantee that the PC running the program supports these technologies and would like…
-
6
votes2
answers374
viewsWhat’s the difference between SSE and Ajax?
I’m looking to update a div which contains a customer’s credits, so update in the Bank the amount of his credits and I am using the setInterval: setInterval(function(){ ver_creditos(); }, 60000);…
-
1
votes0
answers29
viewsDo SSE queries overload the browser?
I am working on a real time web project, which seeks information from the server through SSE. That is, the first request is made to the server, after that the server will send a JSON every second or…