Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/base_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
--err \
--adapter rust_criterion \
--github-actions '${{ secrets.GITHUB_TOKEN }}' \
cargo bench
cargo bench --all-features
2 changes: 1 addition & 1 deletion .github/workflows/pr_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
--err \
--adapter rust_criterion \
--github-actions '${{ secrets.GITHUB_TOKEN }}' \
cargo bench
cargo bench --all-features
30 changes: 11 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ resolver = "2"
name = "pharmsol"
version = "0.26.1"
edition = "2021"
autobenches = false
authors = ["Julián D. Otálvaro <juliandavid347@gmail.com>", "Markus Hovd"]
description = "Rust library for solving analytic and ode-defined pharmacometric models."
license = "GPL-3.0"
Expand All @@ -14,7 +15,13 @@ documentation = "https://lapkb.github.io/pharmsol/"
[features]
default = []
dsl-core = []
dsl-jit = ["dsl-core", "dep:cranelift", "dep:cranelift-jit", "dep:cranelift-module", "dep:cranelift-native"]
dsl-jit = [
"dsl-core",
"dep:cranelift",
"dep:cranelift-jit",
"dep:cranelift-module",
"dep:cranelift-native",
]
dsl-aot = ["dsl-core"]
dsl-aot-load = ["dsl-core", "dep:libloading"]
dsl-wasm-compile = ["dsl-core", "dep:wasm-encoder"]
Expand Down Expand Up @@ -61,25 +68,10 @@ webbrowser = "1.2.1"
bench = false

[[bench]]
name = "performance"
name = "native_matrix"
harness = false

[[bench]]
name = "data"
harness = false

[[bench]]
name = "ode"
harness = false

[[bench]]
name = "nca"
harness = false

[[bench]]
name = "runtime_matrix"
harness = false

[[bench]]
name = "likelihood_matrix"
name = "dsl_matrix"
harness = false
required-features = ["dsl-jit", "dsl-aot", "dsl-aot-load", "dsl-wasm"]
Loading
Loading