Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.md « doc - github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0ce7d2c57980b503ace32a1423eb08be1af050c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<a name="torch.reference.dok"></a>
# Torch Package Reference Manual #

[![Join the chat at https://gitter.im/torch/torch7](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/torch/torch7?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/torch/torch7.svg)](https://travis-ci.org/torch/torch7)

__Torch__ is the main package in [Torch7](http://torch.ch) 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.

<a name="torch.reference.dok"></a>
## Torch Packages ##

  * Tensor Library
    * [Tensor](tensor.md) defines the _all powerful_ tensor object that provides multi-dimensional numerical arrays with type templating.
    * [Mathematical operations](maths.md) that are defined for the tensor object types.
    * [Storage](storage.md) defines a simple storage interface that controls the underlying storage for any tensor object.
  * File I/O Interface Library
    * [File](file.md) is an abstract interface for common file operations.
    * [Disk File](diskfile.md) defines operations on files stored on disk.
    * [Memory File](memoryfile.md) defines operations on stored in RAM.
    * [Pipe File](pipefile.md) defines operations for using piped commands.
    * [High-Level File operations](serialization.md) defines higher-level serialization functions.
  * Useful Utilities
    * [Timer](timer.md) provides functionality for _measuring time_.
    * [Tester](tester.md) is a generic tester framework.
    * [CmdLine](cmdline.md) is a command line argument parsing utility.
    * [Random](random.md) defines a random number generator package with various distributions.
    * Finally useful [utility](utility.md) functions are provided for easy handling of torch tensor types and class inheritance.