Skip to content

Commit

Permalink
0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
guzba committed Jan 26, 2021
1 parent 487754b commit 538c47f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nimsimd.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.4.7"
version = "0.4.8"
author = "Ryan Oldenburg"
description = "Pleasant Nim bindings for SIMD instruction sets."
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/nimsimd/sse2.nim
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ func mm_set1_epi32*(a: int32): M128i
func mm_set1_epi64x*(a: int64): M128i
{.importc: "_mm_set1_epi64x", header: "emmintrin.h".}

func mm_set1_epi8*(a: uint8): M128i
func mm_set1_epi8*(a: int8): M128i

This comment has been minimized.

Copy link
@ringabout

ringabout Jan 27, 2021

This is a breaking change, please also bump pixie(fidget or ...) version, otherwise Nim CI will be broken.

  /home/runner/.nimble/pkgs/pixie-0.0.16/pixie/images.nim(182, 30) Error: type mismatch: got <int literal(255)>
  but expected one of: 
  func mm_set1_epi8(a: int8): M128i
    first type mismatch at position: 1
    required type for a: int8
    but expression '255' is of type: int literal(255)
  
  expression: mm_set1_epi8(255)

https://github.com/nim-lang/Nim/pull/16459/checks?check_run_id=1774023212

This comment has been minimized.

Copy link
@guzba

guzba Jan 27, 2021

Author Owner

Reverted and resolved on 0.4.9

This comment has been minimized.

Copy link
@timotheecour
{.importc: "_mm_set1_epi8", header: "emmintrin.h".}

func mm_set1_pd*(a: float64): M128d
Expand Down

0 comments on commit 538c47f

Please sign in to comment.