-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start writing tests for viz routines
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import jax | ||
import matplotlib.pyplot as plt | ||
|
||
import exponax as ex | ||
|
||
|
||
def test_plot_state_1d(): | ||
state = jax.random.normal( | ||
jax.random.PRNGKey(0), | ||
( | ||
10, | ||
100, | ||
), | ||
) | ||
|
||
fig = ex.viz.plot_state_1d(state) | ||
plt.close(fig) | ||
|
||
|
||
def test_plot_spatio_temporal(): | ||
trj = jax.random.normal(jax.random.PRNGKey(0), (100, 1, 64)) | ||
|
||
fig = ex.viz.plot_spatio_temporal(trj) | ||
plt.close(fig) | ||
|
||
|
||
def test_plot_state_2d(): | ||
state = jax.random.normal(jax.random.PRNGKey(0), (1, 100, 100)) | ||
|
||
fig = ex.viz.plot_state_2d(state) | ||
plt.close(fig) | ||
|
||
|
||
def test_plot_state_3d(): | ||
state = jax.random.normal(jax.random.PRNGKey(0), (1, 32, 32, 32)) | ||
|
||
fig = ex.viz.plot_state_3d(state) | ||
plt.close(fig) |