About 8,140,000 results
Open links in new tab
  1. simd - What is "vectorization"? - Stack Overflow

    Sep 14, 2009 · Vectorization is the process of converting an algorithm from operating on a single value at a time to operating on a set of values at one time. Modern CPUs provide direct support for vector …

  2. c++ - What does vectorization mean? - Stack Overflow

    Oct 4, 2009 · Vectorization doesn't mean that the compiler does it, just that SIMD instructions are used. When the compiler generates SIMD code it's generally called auto-vectorization.

  3. Why is vectorization, faster in general, than loops?

    Jan 30, 2016 · Vectorization is a type of parallel processing. It enables more computer hardware to be devoted to performing the computation, so the computation is done faster.

  4. Do we need vectorization in C++ or are for loops already fast enough?

    Feb 8, 2021 · 5 Do we need vectorization in C++ Vectorisation is not necessarily needed always, but it can make some programs faster. C++ compilers support auto-vectorisation, although if you need to …

  5. python - What is vectorization? - Stack Overflow

    Dec 11, 2017 · What does it mean to vectorize for-loops in Python? Is there another way to write nested for-loops? I am new to Python and on my research, I always come across the NumPy library.

  6. Does Azure AI Search Integrated Vectorization use a Vector Database …

    Feb 5, 2024 · For integrated vectorization - the actual vectors and content are stored in a search index for quick searching, it uses a storage account as a data source, not to search over. The JSON files …

  7. If I am chunking and vectorizing content into Azure AI Search do I ...

    Apr 21, 2024 · Is there an example of how to chunk large documents (not from storage) and index them into Azure AI search in a way that does not require having the same document multiple times in the …

  8. What is the relationship between vectorization and embarrasingly ...

    Jan 10, 2013 · Vectorization is a particular form of how parallelism is achieved. In particular, vectorization mostly uses dedicated SIMD execution hardware units in processors using specialized …

  9. How to vectorize with gcc? - Stack Overflow

    Jan 3, 2009 · The v4 series of the gcc compiler can automatically vectorize loops using the SIMD processor on some modern CPUs, such as the AMD Athlon or Intel Pentium/Core chips. How is this …

  10. Numpy vectorization and algorithmic complexity - Stack Overflow

    Mar 7, 2023 · 'vectorization' can mean different things depending on context. For numpy code (at least in most SO questions) it primarily is the first - replacing interpreterd loops with compiled ones. Low level …