Skip to content

Commit 8c6b9bc

Browse files
authored
Update README.md
1 parent ba00338 commit 8c6b9bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ these indices. The code below provides an implementation.
141141
:returns: The law of propagation of uncertainty.
142142
"""
143143

144+
@jax.jit
144145
def lpu(g: Array, u: Array) -> Array:
145146
"""The law of propagation of uncertainty."""
146147
dims = tuple(range(-d, 0))
147148
return jnp.tensordot(jnp.tensordot(g, u, (dims, dims)), g, (dims, dims))
148149

149150
return lpu
150151

151-
152152
[![CodeQL Advanced](https://github.com/bcdev/uncertaintyx/actions/workflows/codeql.yml/badge.svg)](https://github.com/bcdev/uncertaintyx/actions/workflows/codeql.yml)
153153
[![Python package](https://github.com/bcdev/uncertaintyx/actions/workflows/python-package.yml/badge.svg)](https://github.com/bcdev/uncertaintyx/actions/workflows/python-package.yml)
154154
[![codecov](https://codecov.io/gh/bcdev/uncertaintyx/graph/badge.svg?token=742AWtYDCD)](https://codecov.io/gh/bcdev/uncertaintyx)

0 commit comments

Comments
 (0)