move multigrid example

This commit is contained in:
Magnus Ulimoen 2020-04-12 12:43:14 +02:00
parent 9bf2a1513c
commit ff6a179d92
6 changed files with 15 additions and 8 deletions

View File

@ -9,6 +9,7 @@ edition = "2018"
members = [
"sbp",
"webfront",
"multigrid",
]
[profile.bench]

14
multigrid/Cargo.toml Normal file
View File

@ -0,0 +1,14 @@
[package]
name = "multigrid"
version = "0.1.0"
authors = ["Magnus Ulimoen <flymagnus@gmail.com>"]
edition = "2018"
[dependencies]
sbp = { path = "../sbp" }
hdf5 = "0.6.0"
rayon = "1.3.0"
indicatif = "0.14.0"
structopt = "0.3.13"
ndarray = "0.13.0"
json = "0.12.4"

View File

@ -19,10 +19,6 @@ f32 = []
[dev-dependencies]
criterion = "0.3.1"
structopt = "0.3.12"
indicatif = "0.14.0"
rayon = "1.3.0"
hdf5 = "0.6.0"
[[bench]]
name = "maxwell"
@ -31,7 +27,3 @@ harness = false
[[bench]]
name = "euler"
harness = false
[[example]]
name = "multigrid"
path = "examples/multigrid/bin.rs"