Skip to content

Commit

Permalink
Fixed mis-mapped instruction for VEXTRACTF64X2. (#713)
Browse files Browse the repository at this point in the history
Details:
- This commit fixes a typo in the macro definition for the extended 
  inline assembly macro VEXTRACTF64X2 in bli_x86_asm_macros.h. The macro
  was previously defined (incorrectly) in terms of the vextractf64x4 
  instruction rather than vextractf64x2.
- CREDITS file update.
  • Loading branch information
HarshDave12 authored Jan 17, 2023
1 parent 16d2e9e commit 5793a77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ but many others have contributed code and feedback, including
Dilyn Corner @dilyn-corner
Mat Cross @matcross (NAG)
@decandia50
Harsh Dave @HarshDave12 (AMD)
Daniël de Kok @danieldk (Explosion)
Kay Dewhurst @jkd2016 (Max Planck Institute, Halle, Germany)
Jeff Diamond (Oracle)
Expand Down
2 changes: 1 addition & 1 deletion frame/include/bli_x86_asm_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@
#define VEXTRACTF128(_0, _1, _2) INSTR_(vextractf128, _0, _1, _2)
#define VEXTRACTF32X4(_0, _1, _2) INSTR_(vextractf32x4, _0, _1, _2)
#define VEXTRACTF32X8(_0, _1, _2) INSTR_(vextractf32x8, _0, _1, _2)
#define VEXTRACTF64X2(_0, _1, _2) INSTR_(vextractf64x4, _0, _1, _2)
#define VEXTRACTF64X2(_0, _1, _2) INSTR_(vextractf64x2, _0, _1, _2)
#define VEXTRACTF64X4(_0, _1, _2) INSTR_(vextractf64x4, _0, _1, _2)
#define VBLENDPS(_0, _1, _2, _3) INSTR_(vblendps, _0, _1, _2, _3)
#define VBLENDPD(_0, _1, _2, _3) INSTR_(vblendpd, _0, _1, _2, _3)
Expand Down

0 comments on commit 5793a77

Please sign in to comment.