Generalized (hyper) dual numbers for the calculation of exact (partial) derivatives
Project description
num-dual
Generalized, recursive, scalar and vector (hyper) dual numbers for the automatic and exact calculation of (partial) derivatives. Including bindings for python.
Installation and Usage
Python
The python package can be installed directly from PyPI:
pip install num_dual
Rust
Add this to your Cargo.toml
:
[dependencies]
num-dual = "0.5"
Example
Python
Compute the first and second derivative of a scalar-valued function.
from num_dual import derive2
import numpy as np
def f(x):
return np.exp(x) / np.sqrt(np.sin(x)**3 + np.cos(x)**3)
x = derive2(1.5)
result = f(x)
print('f(x) = {}'.format(result.value))
print('df/dx = {}'.format(result.first_derivative))
print('d2f/dx2 = {}'.format(result.second_derivative))
Rust
This example defines a generic function that can be called using any (hyper) dual number and automatically calculates derivatives.
use num_dual::*;
fn f<D: DualNum<f64>>(x: D, y: D) -> D {
x.powi(3) * y.powi(2)
}
fn main() {
let (x, y) = (5.0, 4.0);
// Calculate a simple derivative
let x_dual = Dual64::from(x).derive();
let y_dual = Dual64::from(y);
println!("{}", f(x_dual, y_dual)); // 2000 + [1200]ε
// Calculate a gradient
let xy_dual_vec = StaticVec::new_vec([x,y]).map(DualVec64::<2>::from).derive();
println!("{}", f(xy_dual_vec[0], xy_dual_vec[1]).eps); // [1200, 1000]
// Calculate a Hessian
let xy_dual2 = StaticVec::new_vec([x,y]).map(Dual2Vec64::<2>::from).derive();
println!("{}", f(xy_dual2[0], xy_dual2[1]).v2); // [[480, 600], [600, 250]]
// for x=cos(t) and y=sin(t) calculate the third derivative w.r.t. t
let t = Dual3_64::from(1.0).derive();
println!("{}", f(t.cos(), t.sin()).v3); // 7.358639755305733
}
Documentation
- You can find the documentation of the rust crate here.
- The documentation of the python package can be found here.
Python
For the following commands to work you have to have the package installed (see: installing from source).
cd docs
make html
Open _build/html/index.html
in your browser.
Further reading
If you want to learn more about the topic of dual numbers and automatic differentiation, we have listed some useful resources for you here:
- Initial paper about hyper-dual numbers: Fike, J. and Alonso, 2011
- Website about all topics regarding automatic differentiation: autodiff.org
- Our paper about dual numbers in equation of state modeling: Rehner, P. and Bauer, G., 2021
Cite us
If you find num-dual
useful for your own scientific studies, consider citing our publication accompanying this library.
@ARTICLE{rehner2021,
AUTHOR={Rehner, Philipp and Bauer, Gernot},
TITLE={Application of Generalized (Hyper-) Dual Numbers in Equation of State Modeling},
JOURNAL={Frontiers in Chemical Engineering},
VOLUME={3},
YEAR={2021},
URL={https://www.frontiersin.org/article/10.3389/fceng.2021.758090},
DOI={10.3389/fceng.2021.758090},
ISSN={2673-2718}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Hashes for num_dual-0.5.3-cp37-abi3-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67443f5b2d8c1de6f57ca1277d28a9844af8d81ffaeead64315e23b62e419cd9 |
|
MD5 | bdd434a1618a6fc751623add4f77b6b7 |
|
BLAKE2b-256 | bb1988d7994fc71ff53c4e2b3372139110e269efea6663779a929ef57376d0e2 |
Hashes for num_dual-0.5.3-cp37-abi3-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c49c7519b4a595d4e43b4a471375c2dbb10838d39d41454ab8ed48e25d88c6 |
|
MD5 | aeb728f5aa8fdccf8b19db2a691ce06f |
|
BLAKE2b-256 | 573eaf09dced42251440ba3d51f1bdbf21401353abc2758d2d3eeb5d6a8a7678 |
Hashes for num_dual-0.5.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8b4a7799c4860883001628054365706b9a7b136143c84357fb854b1f9d0fba3 |
|
MD5 | 2405ee3e32acb9dc3f6b1961306baed5 |
|
BLAKE2b-256 | 2930c53fb544f91238fea1ec4df141ceaac7ab54bed7ba3c7ed252b16d931111 |
Hashes for num_dual-0.5.3-cp37-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a69fd39b25b5f265996ae617943d810d44b2c7c9bc00fb78f02f41bb7e26c9fe |
|
MD5 | 1de2ebed568c325dec84f6cbf69bbe79 |
|
BLAKE2b-256 | 7dbe0db0be36a58b7aa4cce942d2a4e66057e1fc49a960e6ed0b71a5636af386 |
Hashes for num_dual-0.5.3-cp37-abi3-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b7ac209b155cdfe147687e5082590013d9cb093ffcac21b0ab028b41d903d3f |
|
MD5 | d63da22d9974a7025bf34b8758fe10c1 |
|
BLAKE2b-256 | 8482b09405ebffeb5ffef0438335509b2a8a27af4c762936f5c47ba24df4b2eb |