You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
240 B
9 lines
240 B
5 months ago
|
from typing import Optional
|
||
|
|
||
|
__all__ = ['__version__', 'debug', 'cuda', 'git_version', 'hip']
|
||
|
__version__ = '2.3.1'
|
||
|
debug = False
|
||
|
cuda: Optional[str] = None
|
||
|
git_version = 'd44533f9d073df13895333e70b66f81c513c1889'
|
||
|
hip: Optional[str] = None
|