Comment on Using SIMD for Parallel Processing in RustparentComments−hayley-patton2yNarrator: "The code did not, in fact, auto-vectorise."(There's only addsd/movsd instructions, which are add/move scalar-double; we want addpd/movpd which are add/move packed-double in vectorised code.)
Comments
Narrator: "The code did not, in fact, auto-vectorise."
(There's only addsd/movsd instructions, which are add/move scalar-double; we want addpd/movpd which are add/move packed-double in vectorised code.)