-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deactivating AVX for now. For more information see discussion on huon…
- Loading branch information
Showing
3 changed files
with
8 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
@echo off | ||
rem Using a hard coded rust path right now | ||
rem In future check the path variable for a rust path | ||
"C:\Program Files\Rust nightly 1.7\bin\rustc.exe" -C target-cpu=native -C target-feature=+sse2,+sse3,+avx2,+avx %* | ||
rem f32x8/avx causes a crash right now. See comment on https://github.com/huonw/simd/pull/18 | ||
rem "C:\Program Files\Rust nightly 1.7\bin\rustc.exe" -C target-cpu=native -C target-feature=+sse2,+sse3,+avx2,+avx %* | ||
"C:\Program Files\Rust nightly 1.7\bin\rustc.exe" -C target-cpu=native -C target-feature=+sse2,+sse3 %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env bash | ||
# Runs rustc and enables SIMD CPU features | ||
rustc -C target-cpu=native -C target-feature=+sse2,+sse3,+avx2,+avx $@ | ||
# f32x8/avx causes a crash right now. See comment on https://github.com/huonw/simd/pull/18 | ||
#rustc -C target-cpu=native -C target-feature=+sse2,+sse3,+avx2,+avx $@ | ||
rustc -C target-cpu=native -C target-feature=+sse2,+sse3 $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters