Skip to content

Commit

Permalink
Revert "feat: add Kronecker product" (#263)
Browse files Browse the repository at this point in the history
Reverts #261
  • Loading branch information
0xLucqs authored Jan 25, 2024
1 parent f481e8a commit 1f45034
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 77 deletions.
4 changes: 0 additions & 4 deletions src/linalg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@
## [Dot product](./src/dot.cairo)

The dot product or scalar product is an algebraic operation that takes two equal-length sequences of numbers (usually coordinate vectors), and returns a single number. Algebraically, the dot product is the sum of the products of the corresponding entries of the two sequences of numbers ([see also](https://en.wikipedia.org/wiki/Dot_product)).

## [Kronecker product](./src/kron.cairo)

The Kronecker product is an an algebraic operation that takes two equal-length sequences of numbers and returns an array of numbers([see also](https://numpy.org/doc/stable/reference/generated/numpy.kron.html)).
42 changes: 0 additions & 42 deletions src/linalg/src/kron.cairo

This file was deleted.

1 change: 0 additions & 1 deletion src/linalg/src/lib.cairo
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
mod dot;
mod kron;

#[cfg(test)]
mod tests;
1 change: 0 additions & 1 deletion src/linalg/src/tests.cairo
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
mod dot_test;
mod kron_test;
29 changes: 0 additions & 29 deletions src/linalg/src/tests/kron_test.cairo

This file was deleted.

0 comments on commit 1f45034

Please sign in to comment.