LICENSE
MANIFEST.in
README.md
pyproject.toml
setup.py
abovo/__init__.py
abovo.egg-info/PKG-INFO
abovo.egg-info/SOURCES.txt
abovo.egg-info/dependency_links.txt
abovo.egg-info/not-zip-safe
abovo.egg-info/requires.txt
abovo.egg-info/top_level.txt
include/.DS_Store
include/nn/.DS_Store
include/nn/Activation.hpp
include/nn/DenseLayer.hpp
include/nn/Loss.hpp
include/nn/MatMul.hpp
include/nn/Matrix.hpp
include/nn/Sequential.hpp
include/nn/activation/LeakyReLU.hpp
include/nn/activation/ReLU.hpp
include/nn/activation/Sigmoid.hpp
include/nn/activation/Softmax.hpp
include/nn/loss/CrossEntropy.hpp
include/nn/loss/MSE.hpp
include/nn/matmul/Blocked.hpp
include/nn/matmul/Metal.hpp
include/nn/matmul/Naive.hpp
include/nn/matmul/SIMD.hpp
include/nn/matmul/SIMD_MT.hpp
include/nn/quantization/Int8Matrix.hpp
pybind/bindings.cpp
src/.DS_Store
src/nn/.DS_Store
src/nn/Activation.cpp
src/nn/DenseLayer.cpp
src/nn/Loss.cpp
src/nn/MatMul.cpp
src/nn/Matrix.cpp
src/nn/Sequential.cpp
src/nn/activation/LeakyReLU.cpp
src/nn/activation/ReLU.cpp
src/nn/activation/Sigmoid.cpp
src/nn/activation/Softmax.cpp
src/nn/loss/CrossEntropy.cpp
src/nn/loss/MSE.cpp
src/nn/matmul/Blocked.cpp
src/nn/matmul/Metal.cpp
src/nn/matmul/Metal.mm
src/nn/matmul/Naive.cpp
src/nn/matmul/SIMD.cpp
src/nn/matmul/SIMD_MT.cpp
src/nn/quantization/Int8Matrix.cpp
tests/test_activation_type.py
tests/test_dense_layer.py
tests/test_integration.py
tests/test_loss_type.py
tests/test_matmul_type.py
tests/test_matrix.py
tests/test_sequential.py