diff options
author | Lukas Kreussel <65088241+LLukas22@users.noreply.github.com> | 2023-08-18 10:45:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-18 09:45:37 +0100 |
commit | 109e95b189fc6a587ef7d2f901d194646f59b0c4 (patch) | |
tree | 08ad7f0e57624638225d4f017271381d4b187c45 /.cargo | |
parent | c78ce765016392673805ed8dfafb4ae1a7b6c26f (diff) | |
download | candle-109e95b189fc6a587ef7d2f901d194646f59b0c4.tar.gz candle-109e95b189fc6a587ef7d2f901d194646f59b0c4.tar.bz2 candle-109e95b189fc6a587ef7d2f901d194646f59b0c4.zip |
Basic `qmatmul` parallelization (#492)
* Basic `par_iter` parallelization
* Pass errors up
* Disable `avx` for x86 macs
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 8ff190a4..ca9d853b 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,8 +1,8 @@ -[target.x86_64-unknown-linux-gnu] -rustflags = ["-C", "target-cpu=native"] - -[target.aarch64-apple-darwin] +[build] rustflags = ["-C", "target-cpu=native"] [target.wasm32-unknown-unknown] rustflags = ["-C", "target-feature=+simd128"] + +[target.x86_64-apple-darwin] +rustflags = ["-C", "target-feature=-avx,-avx2"]
\ No newline at end of file |