Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

SSE2

Smart_Lubobya
Beginner
327 Views
  • HOW CAN I ENABLE THE SSE ON MY WINDOWS XP?. THE COMPILER IS C++DEV.
  • HOW CAN I MULTIPLY 3 MATRICES USING SSE2 INSTRUCTIONS?
0 Kudos
1 Reply
TimP
Honored Contributor III
327 Views
Quoting - Smart Lubobya
  • HOW CAN I ENABLE THE SSE ON MY WINDOWS XP?. THE COMPILER IS C++DEV.
  • HOW CAN I MULTIPLY 3 MATRICES USING SSE2 INSTRUCTIONS?
Recent Microsoft and Intel compilers support the /arch:SSE2 switch. If you're using mingw or some other 32-bit g++, -march=pentium4, and many more recent options, would do it.
Choose a method for matrix multiplication, and, if you have questions on it, please be more specific.
0 Kudos
Reply