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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#pragma once
#include <torch/csrc/Export.h>
#include <memory>
#include <string>
namespace torch {
namespace autograd {
// forward declaration of Node from function.h
struct Node;
struct TORCH_API AnomalyMode {
static bool is_enabled() {
return _enabled;
}
static bool should_check_nan() {
return _check_nan;
}
static void set_enabled(bool enabled, bool check_nan = true) {
_enabled = enabled;
_check_nan = check_nan;
}
private:
static bool _enabled;
static bool _check_nan;
};
/// A RAII guard that enables Anomaly Detection Mode.
///
/// Anomaly detection mode is useful for debugging problems happening
/// in the backward, such as unexpectedly modified tensors or NaNs
/// occuring in the backward.
///
/// The enabling of anomaly mode is global - as soon as there is one
/// such guard, it is enabled for all computation and threads. It also
/// comes with a significant performance penalty.
///
/// Example:
/// @code
/// auto x = torch::tensor({1.}, torch::requires_grad());
/// {
/// torch::autograd::DetectAnomalyGuard detect_anomaly;
/// auto x = torch::tensor({5.0}, torch::requires_grad());
/// auto y = x * x;
/// auto z = y * y;
/// y += 1;
/// z.backward();
/// }
/// @endcode
class TORCH_API DetectAnomalyGuard {
public:
DetectAnomalyGuard(bool check_nan = true);
~DetectAnomalyGuard();
private:
bool prev_check_nan_;
};
struct TORCH_API AnomalyMetadata {
virtual ~AnomalyMetadata();
virtual void store_stack();
virtual void print_stack(const std::string& current_node_name);
virtual void assign_parent(const std::shared_ptr<Node>& parent_node);
private:
std::string traceback_;
std::shared_ptr<Node> parent_;
};
} // namespace autograd
} // namespace torch
|