2022-07-01 14:16:10 +00:00
|
|
|
import ctypes as ct
|
2022-08-03 04:26:50 +00:00
|
|
|
from pathlib import Path
|
2022-07-01 14:16:10 +00:00
|
|
|
from warnings import warn
|
2022-08-01 10:31:48 +00:00
|
|
|
|
2022-08-03 04:26:50 +00:00
|
|
|
from .cuda_setup.main import evaluate_cuda_setup
|
2022-07-01 14:16:10 +00:00
|
|
|
|
|
|
|
|
2022-08-01 00:47:44 +00:00
|
|
|
class CUDALibrary_Singleton(object):
|
|
|
|
_instance = None
|
|
|
|
|
|
|
|
def __init__(self):
|
2022-08-01 10:31:48 +00:00
|
|
|
raise RuntimeError("Call get_instance() instead")
|
2022-08-01 00:47:44 +00:00
|
|
|
|
|
|
|
def initialize(self):
|
|
|
|
binary_name = evaluate_cuda_setup()
|
2022-08-03 04:26:50 +00:00
|
|
|
package_dir = Path(__file__).parent
|
|
|
|
binary_path = package_dir / binary_name
|
|
|
|
|
|
|
|
if not binary_path.exists():
|
2022-08-01 10:31:48 +00:00
|
|
|
print(f"TODO: compile library for specific version: {binary_name}")
|
2022-08-03 04:26:50 +00:00
|
|
|
legacy_binary_name = "libbitsandbytes.so"
|
|
|
|
print(f"Defaulting to {legacy_binary_name}...")
|
|
|
|
self.lib = ct.cdll.LoadLibrary(package_dir / legacy_binary_name)
|
2022-08-01 00:47:44 +00:00
|
|
|
else:
|
2022-08-03 04:26:50 +00:00
|
|
|
self.lib = ct.cdll.LoadLibrary(package_dir / binary_name)
|
2022-08-01 00:47:44 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_instance(cls):
|
|
|
|
if cls._instance is None:
|
|
|
|
cls._instance = cls.__new__(cls)
|
|
|
|
cls._instance.initialize()
|
|
|
|
return cls._instance
|
|
|
|
|
|
|
|
|
|
|
|
lib = CUDALibrary_Singleton.get_instance().lib
|
2022-07-01 14:16:10 +00:00
|
|
|
try:
|
|
|
|
lib.cadam32bit_g32
|
2022-07-22 21:41:05 +00:00
|
|
|
lib.get_context.restype = ct.c_void_p
|
|
|
|
lib.get_cusparse.restype = ct.c_void_p
|
2022-07-01 14:16:10 +00:00
|
|
|
COMPILED_WITH_CUDA = True
|
|
|
|
except AttributeError:
|
2022-08-01 10:31:48 +00:00
|
|
|
warn(
|
|
|
|
"The installed version of bitsandbytes was compiled without GPU support. "
|
|
|
|
"8-bit optimizers and GPU quantization are unavailable."
|
|
|
|
)
|
2022-07-01 14:16:10 +00:00
|
|
|
COMPILED_WITH_CUDA = False
|