proxsuite 0.7.2
The Advanced Proximal Optimization Toolbox
 
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1try:
2 import torch # noqa F401
3except ImportError:
4 import warnings
5
6 warnings.warn(
7 "PyTorch not found. Please install via pip or conda for example to use QPFunction."
8 )
9 del warnings