mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
* Created TensorOptions
Storing the type in TensorOptions to solve the Variable problem
Created convenience creation functions for TensorOptions and added tests
Converted zeros to TensorOptions
Converted rand to TensorOptions
Fix codegen for TensorOptions and multiple arguments
Put TensorOptions convenience functions into torch namespace too
All factory functions except *_like support TensorOptions
Integrated with recent JIT changes
Support *_like functions
Fix in place modification
Some cleanups and fixes
Support sparse_coo_tensor
Fix bug in Type.cpp
Fix .empty calls in C++ API
Fix bug in Type.cpp
Trying to fix device placement
Make AutoGPU CPU compatible
Remove some auto_gpu.h uses
Fixing some headers
Fix some remaining CUDA/AutoGPU issues
Fix some AutoGPU uses
Fixes to dispatch_tensor_conversion
Reset version of new variables to zero
Implemented parsing device strings
Random fixes to tests
Self review cleanups
flake8
Undo changes to variable.{h,cpp} because they fail on gcc7.2
Add [cuda] tag to tensor_options_cuda.cpp
Move AutoGPU::set_index_from into .cpp file because Windows is stupid and sucks
Fix linker error in AutoGPU.cpp
Fix bad merge conflict in native_functions.yaml
Fixed caffe2/contrib/aten
Fix new window functions added to TensorFactories.cpp
* Removed torch::TensorOptions
Added code to generate wrapper functions for factory methods
Add implicit constructor from Backend to TensorOptions
Remove Var() from C++ API and use torch:: functions
Use torch:: functions more subtly in C++ API
Make AutoGPU::set_device more exception safe
Check status directly in DynamicCUDAHooksInterface
Rename AutoGPU to DeviceGuard
Removed set_requires_grad from python_variables.h and warn appropriately in Variable::set_requires_grad
remove python_default_init: self.type()
Add back original factory functions, but with deprecation warnings
Disable DeviceGuard for a couple functions in ATen
Remove print statement
Fix DeviceGuard construction from undefined tensor
Fixing CUDA device compiler issues
Moved as many methods as possible into header files
Dont generate python functions for deprecated factories
Remove merge conflict artefact
Fix tensor_options_cuda.cpp
Fix set_requires_grad not being checked
Fix tensor_new.h
TEMPORARILY put some methods in .cpp files to see if it solves issues on windows and mac
Fix bug in DeviceGuard.h
Missing includes
TEMPORARILY moving a few more methods into .cpp to see if it fixes windows
Fixing linker errors
* Fix up SummaryOps to use new factories
Undo device agnostic behavior of DeviceGuard
Use -1 instead of optional for default device index
Also move DeviceGuard methods into header
Fixes around device index after optional -> int32_t switch
Fix use of DeviceGuard in new_with_tensor_copy
Fix tensor_options.cpp
* Fix Type::copy(
* Remove test_non_float_params from ONNX tests
* Set requires_grad=False in ONNX tests that use ints
* Put layout/dtype/device on Tensor
* Post merge fixes
* Change behavior of DeviceGuard to match AutoGPU
* Fix C++ API integration tests
* Fix flip functions
98 lines
2.6 KiB
C++
98 lines
2.6 KiB
C++
#include <catch.hpp>
|
|
|
|
#include <torch/functions.h>
|
|
#include <torch/nn/module.h>
|
|
#include <torch/nn/modules/linear.h>
|
|
#include <torch/nn/modules/sequential.h>
|
|
#include <torch/optimizers.h>
|
|
#include <torch/tensor.h>
|
|
#include <torch/utils.h>
|
|
|
|
#include <test/cpp/api/util.h>
|
|
|
|
using namespace torch;
|
|
using namespace torch::nn;
|
|
|
|
bool test_optimizer_xor(Optimizer optim, std::shared_ptr<Sequential> model) {
|
|
float running_loss = 1;
|
|
int epoch = 0;
|
|
while (running_loss > 0.1) {
|
|
int64_t bs = 4;
|
|
auto inp = torch::empty({bs, 2});
|
|
auto lab = torch::empty({bs});
|
|
for (size_t i = 0; i < bs; i++) {
|
|
const int64_t a = std::rand() % 2;
|
|
const int64_t b = std::rand() % 2;
|
|
const int64_t c = static_cast<uint64_t>(a) ^ static_cast<uint64_t>(b);
|
|
inp[i][0] = a;
|
|
inp[i][1] = b;
|
|
lab[i] = c;
|
|
}
|
|
inp.set_requires_grad(true);
|
|
// forward
|
|
std::function<at::Scalar()> closure = [&]() -> at::Scalar {
|
|
optim->zero_grad();
|
|
auto x = model->forward(inp);
|
|
Variable loss = at::binary_cross_entropy(x, lab);
|
|
loss.backward();
|
|
return at::Scalar(loss.data());
|
|
};
|
|
|
|
at::Scalar loss = optim->step(closure);
|
|
|
|
running_loss = running_loss * 0.99 + loss.toFloat() * 0.01;
|
|
if (epoch > 3000) {
|
|
return false;
|
|
}
|
|
epoch++;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
TEST_CASE("optim") {
|
|
std::srand(0);
|
|
torch::manual_seed(0);
|
|
auto model = std::make_shared<Sequential>(
|
|
SigmoidLinear(Linear(2, 8).build()), SigmoidLinear(Linear(8, 1).build()));
|
|
|
|
// Flaky
|
|
// SECTION("lbfgs") {
|
|
// auto optim = LBFGS(model, 5e-2).max_iter(5).make();
|
|
// REQUIRE(test_optimizer_xor(optim, model));
|
|
// }
|
|
|
|
SECTION("sgd") {
|
|
auto optim =
|
|
SGD(model, 1e-1).momentum(0.9).nesterov().weight_decay(1e-6).make();
|
|
REQUIRE(test_optimizer_xor(optim, model));
|
|
}
|
|
|
|
SECTION("adagrad") {
|
|
auto optim = Adagrad(model, 1.0).weight_decay(1e-6).lr_decay(1e-3).make();
|
|
REQUIRE(test_optimizer_xor(optim, model));
|
|
}
|
|
|
|
SECTION("rmsprop_simple") {
|
|
auto optim = RMSprop(model, 1e-1).centered().make();
|
|
REQUIRE(test_optimizer_xor(optim, model));
|
|
}
|
|
|
|
SECTION("rmsprop") {
|
|
auto optim = RMSprop(model, 1e-1).momentum(0.9).weight_decay(1e-6).make();
|
|
REQUIRE(test_optimizer_xor(optim, model));
|
|
}
|
|
|
|
/*
|
|
// This test appears to be flaky, see
|
|
https://github.com/pytorch/pytorch/issues/7288 SECTION("adam") { auto optim =
|
|
Adam(model, 1.0).weight_decay(1e-6).make(); REQUIRE(test_optimizer_xor(optim,
|
|
model));
|
|
}
|
|
*/
|
|
|
|
SECTION("amsgrad") {
|
|
auto optim = Adam(model, 0.1).weight_decay(1e-6).amsgrad().make();
|
|
REQUIRE(test_optimizer_xor(optim, model));
|
|
}
|
|
}
|