Skip to content

Commit 03c9bf5

Browse files
author
Niraj Bajpai
committed
feat: Add tests for laguide module
1 parent aa6a1a5 commit 03c9bf5

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/test_laguide.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import numpy as np
2+
from laguide import DotProduct
3+
4+
def test_dot_product():
5+
U = np.array([[1], [2], [3]])
6+
V = np.array([[4], [5], [6]])
7+
assert DotProduct(U, V) == 32.0

0 commit comments

Comments
 (0)