From 33efe4a09f459832e8beceba70add0695cc485e4 Mon Sep 17 00:00:00 2001 From: Max Ryabinin Date: Thu, 30 Jun 2022 18:14:20 +0300 Subject: Remove unused imports, fix NotImplementedError --- bitsandbytes/functional.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bitsandbytes/functional.py') diff --git a/bitsandbytes/functional.py b/bitsandbytes/functional.py index 44116cc..fbd7564 100644 --- a/bitsandbytes/functional.py +++ b/bitsandbytes/functional.py @@ -2,13 +2,13 @@ # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. +import ctypes as ct import os import random -import math -import ctypes as ct +from typing import Tuple + import torch from torch import Tensor -from typing import Tuple lib = ct.cdll.LoadLibrary(os.path.dirname(__file__) + '/libbitsandbytes.so') name2qmap = {} -- cgit v1.2.3