Completed
Scalar parallel computing based on concurrency
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Writing Fast Java Code with the Vector API - JEP Café 18
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Introducing the SIMD features of your CPU
- 3 Scalar parallel computing based on concurrency
- 4 Vector parallel computing based on SIMD machine
- 5 Shape and species of a Vector
- 6 Creating vectors from arrays to sum them
- 7 Loading any array in a vector using masks
- 8 Avoiding masking when it is not supported
- 9 Parallel cross-lanes and lane-wise operations
- 10 Computing the norm of a vector in parallel
- 11 Computing the average of vector components in parallel
- 12 Filtering and compressing a vector in parallel
- 13 Reducing a vector in parallel
- 14 Wrapping up parallel computations using vectors
- 15 Examples, patterns and performances
- 16 Outro