From 109e95b189fc6a587ef7d2f901d194646f59b0c4 Mon Sep 17 00:00:00 2001 From: Lukas Kreussel <65088241+LLukas22@users.noreply.github.com> Date: Fri, 18 Aug 2023 10:45:37 +0200 Subject: Basic `qmatmul` parallelization (#492) * Basic `par_iter` parallelization * Pass errors up * Disable `avx` for x86 macs --- .cargo/config.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.cargo') 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 -- cgit v1.2.3