Skip to content

Commit

Permalink
Update examples to use core_arch
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed Jan 31, 2019
1 parent b0ff676 commit 28b5e16
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/aobench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ criterion = { version = '^0.2', features=['real_blackbox'] }
default = [ "256bit" ]
256bit = []
sleef-sys = [ "packed_simd/sleef-sys" ]
coresimd = [ "packed_simd/coresimd" ]
core_arch = [ "packed_simd/core_arch" ]

[[bench]]
name = "isec_sphere"
Expand Down
2 changes: 1 addition & 1 deletion examples/mandelbrot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ path = "src/lib.rs"
[features]
default = []
sleef-sys = ["packed_simd/sleef-sys"]
coresimd = ["packed_simd/coresimd"]
core_arch = ["packed_simd/core_arch"]
5 changes: 5 additions & 0 deletions examples/nbody/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ path = "src/main.rs"
[lib]
name = "nbody_lib"
path = "src/lib.rs"

[features]
default = [ ]
sleef-sys = [ "packed_simd/sleef-sys" ]
core_arch = [ "packed_simd/core_arch" ]
2 changes: 1 addition & 1 deletion examples/options_pricing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ path = "src/lib.rs"

[features]
default = []
coresimd = [ "packed_simd/coresimd" ]
core_arch = [ "packed_simd/core_arch" ]
sleef-sys = [ "packed_simd/sleef-sys" ]
ispc_libm = [ "ispc" ]
2 changes: 1 addition & 1 deletion examples/stencil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ path = "src/lib.rs"

[features]
default = []
coresimd = ["packed_simd/coresimd"]
core_arch = ["packed_simd/core_arch"]
sleef-sys = ["packed_simd/sleef-sys"]

0 comments on commit 28b5e16

Please sign in to comment.