fix dependency issues related to the new cwrap standalone package
3 files changed
tree: 3fbdc5091727e24a282fbc8f50a0da03bb37ce04
  1. doc/
  2. generic/
  3. lib/
  4. test/
  5. CMakeLists.txt
  6. CmdLine.lua
  7. DiskFile.c
  8. File.c
  9. File.lua
  10. general.h
  11. hist.lua
  12. init.c
  13. init.lua
  14. MemoryFile.c
  15. PipeFile.c
  16. random.lua
  17. README.md
  18. Storage.c
  19. Tensor.c
  20. Tensor.lua
  21. TensorMath.lua
  22. TensorOperator.c
  23. Tester.lua
  24. Timer.c
  25. torchcwrap.lua
  26. utils.c
  27. utils.h
README.md

Torch is the main package in Torch7 where data structures for multi-dimensional tensors and mathematical operations over these are defined. Additionally, it provides many utilities for accessing files, serializing objects of arbitrary types and other useful utilities.

  • Tensor Library
    • Tensor defines the all powerful tensor object that provides multi-dimensional numerical arrays with type templating.
    • Mathematical operations that are defined for the tensor object types.
    • Storage defines a simple storage interface that controls the underlying storage for any tensor object.
  • File I/O Interface Library
  • Useful Utilities
    • Timer provides functionality for measuring time.
    • Tester is a generic tester framework.
    • CmdLine is a command line argument parsing utility.
    • Random defines a random number generator package with various distributions.
    • Finally useful utility functions are provided for easy handling of torch tensor types and class inheritance.