Home
last modified time | relevance | path

Searched refs:PyTorchError (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/
H A DExceptions.h87 catch (torch::PyTorchError & e) { \
266 struct PyTorchError : public std::exception { struct
267 PyTorchError() = default;
268 PyTorchError(std::string msg_) : msg(std::move(msg_)) {} in PyTorchError() argument
286 struct TypeError : public PyTorchError { argument
287 using PyTorchError::PyTorchError;
295 struct AttributeError : public PyTorchError {