move multigrid example
This commit is contained in:
parent
9bf2a1513c
commit
ff6a179d92
|
@ -9,6 +9,7 @@ edition = "2018"
|
|||
members = [
|
||||
"sbp",
|
||||
"webfront",
|
||||
"multigrid",
|
||||
]
|
||||
|
||||
[profile.bench]
|
||||
|
|
|
@ -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"
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue