SSE2 Question
I think it's an error in the way minecraft displays the information.not sure i follow you. this does not matter for my gpu because it uses a entirely different instruction set?
It has nothing to do with your GPU but rather is an instruction set for your CPU.
It was eveloped by intel but had been adopted by AMD (like x68/AMD64 has been developed by amd and adopted by intel).
An instruction set is a collection of instructions that a processor might execute.
An instruction is an array of bits (0 or 1) that the processor will have to understand. An example could be adding or subtracting values.
The regular x86 instructions all do a single calculation at a time (1 addition for example or 1 substraction). We call this principle SISD (Single Instruction Single Data) and its what cpu's are really good at.
SSE stands for Streaming SIMD extension and as the name tells you it are some extra instructions to extend the x86 instructionset.
But these are not normal instructions, they are SIMD: Single Instruction Multiple Data.
That means that one instruction can do multiple (but the same type of) operations.
In case of SSE you can do 4 of the same operations with one instruction. The cpu also has to contain special 128 registers (a place to save values like in RAM but build into your cpu and wayyyyyyyyy faster). The advantage of using SSE is that it will be faster to execute the SSE instruction than it is to execute 4 regular x86 instructions.
To take advantage of SSE you have to write some special code in your program (like minecraft does).
Most games use SSE as it is perfect for vector calculations (linear algebra).
Sorry if he post is a mess i dont have access to my pc only a phone ;(

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now