software vector chaining
play

Software Vector Chaining M. Anton Ertl TU Wien Data Parallelism - PowerPoint PPT Presentation

Software Vector Chaining M. Anton Ertl TU Wien Data Parallelism and SIMD instructions Data parallelism in programming problems Hardware provides SIMD instructions Cray-1 vector instructions, Intel/AMD SSE/AVX, ARM Neon/SVE vmulpd %ymm2,


  1. Software Vector Chaining M. Anton Ertl TU Wien

  2. Data Parallelism and SIMD instructions • Data parallelism in programming problems • Hardware provides SIMD instructions Cray-1 vector instructions, Intel/AMD SSE/AVX, ARM Neon/SVE vmulpd %ymm2, %ymm3, %ymm1 ymm2 ymm3 * * * * ymm1 • Little programming language support

  3. Programming language support: How? • Manual Vectorization • Application vector length • Opaque, immutable vectors with value semantics • Vector stack : vcomp ( va vb -- vc ) vdup sf*v vswap vdup sf*v sf+v sfnegatev ;

  4. Properties, benefits and drawbacks scalars • Vectors are immutable (value semantics) vectors − Explicit conversion from/to memory arrays + gives control to programmer, new FloatVect array who can make conversions infrequent vector + Padding to SIMD granularity scalar + Aligning to SIMD granularity mul adressing + No aliasing problems indexing add + Results do not overlap input operands control flow ... + only explicit dependences intoArray vector + vectors are a separate world array vector sum + Compiler can arrange computations scalar

  5. Implementation simple sf+v fused vcomp simple: fused: vmovaps (%rdi,%r10,1),%ymm0 vmovaps (%rdi,%r10,1),%ymm0 vaddps (%rsi,%r10,1),%ymm0,%ymm0 vmulps %ymm0,%ymm0,%ymm1 vmovaps %ymm0,(%rdx,%r10,1) vmovaps (%rsi,%r10,1),%ymm2 add $0x20,%r10 vmulps %ymm2,%ymm2,%ymm3 cmp %r10,%rcx vaddps %ymm1,%ymm3,%ymm1 ja simple vxorps %ymm1,%ymm4,%ymm1 vmovaps %ymm0,(%rdx,%r10,1) add $0x20,%r10 cmp %r10,%r9 ja fused ... but how?

  6. Who performs vector loop fusion? Compiler Run-time Library + Low run-time overhead − High run-time overhead − High implementation effort? + Low implementation effort − Control-flow may limit fusion + Fuses across control flow − Aliasing plays a role + Dependencies resolved Software Vector Chaining

  7. Implementing a vector operation simple chaining make result vector add to trace perform operation loop make result vector stub trace ends? done done n y trace in cache? n generate code y cache code allocate result vector memory execute code clear trace done

  8. Generate code vdup sf*v vswap vdup sf*v sf+v sfnegatev $24147C0 refs= 0 bytes=16 $24147A0 :14 $2414B10 refs= 0 bytes=16 $2415150 :15 sftimesv_ 15 15 temporary :16 sftimesv_ 14 14 temporary :17 sfplusv_ 16 17 temporary :18 sfnegatev_ 18 0 $2415030 refs= 0 bytes=16 $2417300 :19 fused: vmovaps (%rdi,%r10,1),%ymm0 vmulps %ymm0,%ymm0,%ymm1 vmovaps (%rsi,%r10,1),%ymm2 vmulps %ymm2,%ymm2,%ymm3 vaddps %ymm1,%ymm3,%ymm1 vxorps %ymm1,%ymm4,%ymm1 vmovaps %ymm0,(%rdx,%r10,1) add $0x20,%r10 cmp %r10,%r9 ja fused

  9. Evaluation Multiply 50 × 50 with 50 × n Double matrix for varying n , 500 times on Core i5 6600K (Skylake) instructions cycles simple simple 30G 40G 30G 20G compiler fused compiler fused fused unrolled 20G chaining fused unrolled chaining 10G 10G 5G 5G 2G 2G n n 0G 0G 1 1000 3000 6000 9000 12000 1 1000 3000 6000 9000 12000

  10. Conclusion • How to use SIMD instructions for data parallelism? • Manual vectorization, application vector size, opaque vectors gives freedom to the compiler/library writer • Software vector chaining Build trace at run-time Compile if not cached + Can be implemented as library 315 source lines of code + For long vectors > 2 × as fast as simple − High per-operation overhead Useful only for long vectors Select between simple and chaining per operation • github.com/AntonErtl/vectors Paper at ManLang 2018 https://www.complang.tuwien.ac.at/papers/ertl18.pdf

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend