Skip to content

Commit 564ca7a

Browse files
committed
edit: replace std to core
1 parent 1b91892 commit 564ca7a

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,8 @@ jobs:
8181
platform:
8282
- runner: windows-latest
8383
target: x64
84-
# Extra specific case, for old windows versions
85-
# - runner: windows-latest
86-
# target: x86
84+
- runner: windows-latest
85+
target: x86
8786
steps:
8887
- uses: actions/checkout@v4
8988
- uses: actions/setup-python@v5

src/native.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
use std::arch::x86_64::*;
1+
#![feature(stdsimd)]
2+
3+
4+
#[cfg(target_arch = "x86_64")]
5+
use core::arch::x86_64::*;
26

37
const WAY_8_SZ: usize = 8;
48
const WAY_4_SZ: usize = 4;

0 commit comments

Comments
 (0)