What does vectorization mean?

前端 未结 5 2239
广开言路
广开言路 2020-12-13 09:26

Is it a good idea to vectorize the code? What are good practices in terms of when to do it? What happens underneath?

5条回答
  •  [愿得一人]
    2020-12-13 10:18

    It's SSE code Generation.

    You have a loop with float matrix code in it matrix1[i][j] + matrix2[i][j] and the compiler generates SSE code.

提交回复
热议问题