Except in very, very specific circumstances (i.e. vector processors , which are mainly used in supercomputers such as Cray X1 ), the processor has no registers that will support loading such large arrays.
As already mentioned, many processors can use SIMD, but, again, they are usually performed for specific applications (for example, GPU modules use built-in SIMD systems to process all the necessary data), and manual coding in assembly language is almost always required.
Vectorization may be of interest to you, as far as compilers are concerned (mainly for C / C ++, I believe) who are trying to compile traditional code with loops into optimized assembler code using vectors. Unfortunately, this usually applies to vectors much smaller than the 100,000 items you requested.
Tl; dr : No, such large registers do not exist, and languages / compilers that easily support them. But there are several smaller solutions that may interest you!
Hope this will be helpful!
source share