Skip to content

Commit

Permalink
[zeta.utils][__init__][CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Dec 16, 2023
1 parent 5b63c1f commit 9e6bfeb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zetascale"
version = "0.9.3"
version = "0.9.4"
description = "Transformers at zeta scales"
authors = ["Zeta Team <kye@apac.ai>"]
license = "MIT"
Expand Down
16 changes: 15 additions & 1 deletion zeta/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright (c) 2022 Agora
# Licensed under The MIT License [see LICENSE for details]
from zeta.utils.main import *
from zeta.utils.cuda_memory_wrapper import track_cuda_memory_usage

from zeta.utils.benchmark import (
benchmark,
print_cuda_memory_usage,
save_memory_snapshot,
)


__all__ = [
"track_cuda_memory_usage",
"benchmark",
"print_cuda_memory_usage",
"save_memory_snapshot",
]

0 comments on commit 9e6bfeb

Please sign in to comment.