Skip to content

Commit 96dfb4e

Browse files
committed
more wlab tests
1 parent 0aa49af commit 96dfb4e

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tests/wt/test_wlab.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,15 @@ def test_wavelet_function():
7979
wavelet_function(db4(), 0, 0, 16)
8080

8181
def test_scaling_function():
82-
scaling_function(db4(), 0, 0, 16)
82+
scaling_function(db4(), 0, 0, 16)
83+
84+
85+
def test_forward_periodized_orthogonal():
86+
qmf = haar()
87+
x = random.normal(keys[0], (4,))
88+
w = forward_periodized_orthogonal_jit(qmf, x)
89+
90+
def test_inverse_periodized_orthogonal():
91+
qmf = haar()
92+
w = random.normal(keys[0], (4,))
93+
x = inverse_periodized_orthogonal_jit(qmf, w)

0 commit comments

Comments
 (0)