pytorch/test/cpp/api
Will Feng aad0263a6b Support multidimensional inputs to torch::tensor (#26210)
Summary:
This PR adds support for multidimensional inputs to `torch::tensor`, to match the Python `torch.tensor` API.

Closes https://github.com/pytorch/pytorch/issues/16099.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/26210

Differential Revision: D17456761

Pulled By: yf225

fbshipit-source-id: a53ce74c535c13c5dcb833f19e9b6b79d12376b5
2019-09-19 17:37:55 -07:00
..
any.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
autograd.cpp Improve handling of mixed-type tensor operations (#22273) 2019-09-05 18:26:09 -07:00
CMakeLists.txt Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
dataloader.cpp add sorting policy to ChunkDataset (#23053) 2019-07-29 12:34:02 -07:00
expanding-array.cpp
functional.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
init.cpp Fix torch::nn::init::orthogonal_ with CNNs (#18915) 2019-04-09 10:39:15 -07:00
init_baseline.h Kaiming Initialization (#14718) 2019-02-15 14:58:22 -08:00
init_baseline.py Kaiming Initialization (#14718) 2019-02-15 14:58:22 -08:00
integration.cpp
jit.cpp Add Pickler C++ API (#23241) 2019-08-12 14:43:31 -07:00
memory.cpp
misc.cpp C++ API parity: at::Tensor::grad 2019-09-18 09:20:38 -07:00
module.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
modulelist.cpp Adding ModuleList to modules.h (#25346) 2019-08-29 10:49:22 -07:00
modules.cpp C++ API parity: at::Tensor::grad 2019-09-18 09:20:38 -07:00
optim.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
optim_baseline.h
optim_baseline.py
ordered_dict.cpp C++ unregister_module function for Module (#26088) 2019-09-12 18:38:57 -07:00
parallel.cpp C++ API parity: at::Tensor::grad 2019-09-18 09:20:38 -07:00
README.md
rnn.cpp Make options.name_ private, and change all callsites to use options.name() (#26419) 2019-09-19 14:48:22 -07:00
sequential.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
serialize.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
static.cpp Re-organize C++ API torch::nn folder structure (#26262) 2019-09-17 10:07:29 -07:00
support.h Add TORCH_WARN_ONCE, and use it in Tensor.data<T>() (#25207) 2019-08-27 21:42:44 -07:00
tensor.cpp Support multidimensional inputs to torch::tensor (#26210) 2019-09-19 17:37:55 -07:00
tensor_cuda.cpp Deprecate tensor.data<T>(), and codemod tensor.data<T>() to tensor.data_ptr<T>() (#24886) 2019-08-21 20:11:24 -07:00
tensor_options.cpp Revert D15920763: Move TensorOptions to ATen/core 2019-08-13 12:07:18 -07:00
tensor_options_cuda.cpp Revert D15920763: Move TensorOptions to ATen/core 2019-08-13 12:07:18 -07:00
torch_include.cpp Add get/set_num_interop_threads into torch.h include (#20659) 2019-05-20 00:34:59 -07:00

C++ Frontend Tests

In this folder live the tests for PyTorch's C++ Frontend. They use the GoogleTest test framework.

CUDA Tests

To make a test runnable only on platforms with CUDA, you should suffix your test with _CUDA, e.g.

TEST(MyTestSuite, MyTestCase_CUDA) { }

To make it runnable only on platforms with at least two CUDA machines, suffix it with _MultiCUDA instead of _CUDA, e.g.

TEST(MyTestSuite, MyTestCase_MultiCUDA) { }

There is logic in main.cpp that detects the availability and number of CUDA devices and supplies the appropriate negative filters to GoogleTest.

Integration Tests

Integration tests use the MNIST dataset. You must download it by running the following command from the PyTorch root folder:

$ python tools/download_mnist.py -d test/cpp/api/mnist

The required paths will be referenced as test/cpp/api/mnist/... in the test code, so you must run the integration tests from the PyTorch root folder.