Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Flunzmas committed Jan 18, 2022
1 parent 1aa2910 commit ff819a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions tests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_custom.py
2 changes: 1 addition & 1 deletion vp_suite/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_this_year = time.strftime("%Y")
__name__ = "vp-suite"
_version = 0, 0, 5
_version = 0, 0, 6
__version__ = ".".join(map(str, _version))
__author__ = "Andreas Boltres"
__author_email__ = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion vp_suite/vpsuite.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class VPSuite:

DEFAULT_RUN_CONFIG = (constants.PKG_RESOURCES / 'run_config.json').resolve()

def __init__(self, device="cpu"):
def __init__(self, device="cuda"):
self.device = "cuda" if device == "cuda" and torch.cuda.is_available() else "cpu"

self.clear_models()
Expand Down

0 comments on commit ff819a1

Please sign in to comment.