We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e60ead6 + e7307e0 commit 941b225Copy full SHA for 941b225
docs/source/migration_guide.rst
@@ -66,6 +66,15 @@ Loading Batches
66
to update an existing batch through its ``load`` method. The regular assign
67
operator can be used instead.
68
69
+Indexing Batches
70
+****************
71
+
72
+``xsimd::batch<T>::operator[](size_t)`` has been replaced with
73
+``xsimd::batch<T>::get(size_t)``. Keep in mind that this method implies a register
74
+load *for each call*, so it's wise not to use it in performance-critical
75
+section. When needed, do an explicit store of the batch into an array and work
76
+from there.
77
78
Architecture Detection
79
**********************
80
0 commit comments