Skip to content

cnmy-ro/nabla

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nabla

Minimal implementation of reverse-mode automatic differentiation.

  • Python version:
    • python/nabla.py: Thin autodiff wrapper over Numpy with PyTorch-like API
    • python_examples: Toy examples built using this module
  • C version (WIP):
    • c/cpuarrays.h : Low-level array library for CPU
    • c/nabla.h: Autodiff library wrapping cpuarrays
    • c_examples: Toy examples built using this library