It depends on what you mean by “supported.” You mean direct one-instruction operations on 128 bit integer types? Then no.
For storage of 128 bits? Sure, it’s just like the CPU. You can make your own struct, or use the standard 128 bit float4 type. If you need to do operations on it, it’s all classic C++, you can define your own operators for whatever abilities you need.
It depends on what you mean by “supported.” You mean direct one-instruction operations on 128 bit integer types? Then no.
For storage of 128 bits? Sure, it’s just like the CPU. You can make your own struct, or use the standard 128 bit float4 type. If you need to do operations on it, it’s all classic C++, you can define your own operators for whatever abilities you need.