lib: relax compilation flags
1 file changed
tree: 910cc1b12253a64635872eed19ea8326d2bada64
  1. cmake/
  2. doc/
  3. generic/
  4. lib/
  5. rocks/
  6. test/
  7. CMakeLists.txt
  8. CmdLine.lua
  9. DiskFile.c
  10. File.c
  11. File.lua
  12. general.h
  13. hist.lua
  14. init.c
  15. init.lua
  16. MemoryFile.c
  17. PipeFile.c
  18. random.lua
  19. README.md
  20. Storage.c
  21. Tensor.c
  22. Tensor.lua
  23. TensorMath.lua
  24. TensorOperator.c
  25. Tester.lua
  26. Timer.c
  27. torchcwrap.lua
  28. utils.c
  29. 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.