Skip to content

Commit

Permalink
fixed kand for avx512
Browse files Browse the repository at this point in the history
  • Loading branch information
JPietrzykTUD committed Nov 25, 2024
1 parent 3f767c8 commit f90c280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primitive_data/primitives/mask.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ definitions:
- target_extension: "avx512"
ctype: ["int8_t", "uint8_t", "int16_t", "uint16_t", "int32_t", "uint32_t", "int64_t", "uint64_t"]
lscpu_flags: ['avx512f', 'avx512dq', 'avx512bw']
implementation: "return _kand_mask{{ intrin_tp[ctype][1] }}(first, second);"
implementation: "return _kand_mask{{ (512//intrin_tp[ctype][1]) }}(first, second);"
- target_extension: "avx512"
ctype: ["float"]
lscpu_flags: ['avx512f']
Expand Down

0 comments on commit f90c280

Please sign in to comment.