-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from locaal-ai/roy.threaded_whisper
Roy.threaded whisper
- Loading branch information
Showing
8 changed files
with
640 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "simpler-whisper" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = [ | ||
{name = "Roy Shilkrot", email = "[email protected]"}, | ||
] | ||
|
@@ -33,4 +33,4 @@ dependencies = [ | |
packages = ["simpler_whisper"] | ||
|
||
[tool.setuptools.package-data] | ||
simpler_whisper = ["*.dll", "*.pyd", "*.so", "*.metal"] | ||
simpler_whisper = ["*.dll", "*.pyd", "*.so", "*.metal"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,73 +6,108 @@ | |
import platform | ||
import sysconfig | ||
|
||
|
||
class CMakeExtension(Extension): | ||
def __init__(self, name, sourcedir=''): | ||
def __init__(self, name, sourcedir=""): | ||
Extension.__init__(self, name, sources=[]) | ||
self.sourcedir = os.path.abspath(sourcedir) | ||
|
||
|
||
class CMakeBuild(build_ext): | ||
def run(self): | ||
try: | ||
out = subprocess.check_output(['cmake', '--version']) | ||
out = subprocess.check_output(["cmake", "--version"]) | ||
except OSError: | ||
raise RuntimeError("CMake must be installed to build the following extensions: " + | ||
", ".join(e.name for e in self.extensions)) | ||
raise RuntimeError( | ||
"CMake must be installed to build the following extensions: " | ||
+ ", ".join(e.name for e in self.extensions) | ||
) | ||
|
||
for ext in self.extensions: | ||
self.build_extension(ext) | ||
|
||
def build_extension(self, ext): | ||
# This is the critical change - we need to get the proper extension suffix | ||
ext_suffix = sysconfig.get_config_var("EXT_SUFFIX") | ||
|
||
# Get the full path where the extension should be placed | ||
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name))) | ||
|
||
|
||
# Ensure the extension directory exists | ||
os.makedirs(extdir, exist_ok=True) | ||
|
||
# Get acceleration and platform from environment variables | ||
acceleration = os.environ.get('SIMPLER_WHISPER_ACCELERATION', 'cpu') | ||
target_platform = os.environ.get('SIMPLER_WHISPER_PLATFORM', platform.machine()) | ||
|
||
acceleration = os.environ.get("SIMPLER_WHISPER_ACCELERATION", "cpu") | ||
target_platform = os.environ.get("SIMPLER_WHISPER_PLATFORM", platform.machine()) | ||
python_version = os.environ.get( | ||
"SIMPLER_WHISPER_PYTHON_VERSION", | ||
f"{sys.version_info.major}.{sys.version_info.minor}", | ||
) | ||
|
||
cmake_args = [ | ||
f'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY={extdir}', | ||
f'-DACCELERATION={acceleration}', | ||
f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY={extdir}", | ||
f"-DPYTHON_EXTENSION_SUFFIX={ext_suffix}", # Pass the extension suffix to CMake | ||
f"-DACCELERATION={acceleration}", | ||
f"-DPYTHON_VERSION={python_version}", | ||
] | ||
|
||
env = os.environ.copy() | ||
|
||
# Add platform-specific arguments | ||
if platform.system() == "Darwin": # macOS | ||
cmake_args += [f'-DCMAKE_OSX_ARCHITECTURES={target_platform}'] | ||
# add MACOS_ARCH env variable to specify the target platform | ||
cmake_args += [ | ||
f"-DCMAKE_OSX_ARCHITECTURES={target_platform}", | ||
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON", | ||
"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON", | ||
f"-DCMAKE_INSTALL_NAME_DIR=@rpath", | ||
] | ||
env["MACOS_ARCH"] = target_platform | ||
|
||
cfg = 'Debug' if self.debug else 'Release' | ||
build_args = ['--config', cfg] | ||
cfg = "Debug" if self.debug else "Release" | ||
build_args = ["--config", cfg] | ||
|
||
if platform.system() == "Windows": | ||
cmake_args += [f'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{cfg.upper()}={extdir}'] | ||
cmake_args += [f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_{cfg.upper()}={extdir}"] | ||
if sys.maxsize > 2**32: | ||
cmake_args += ['-A', 'x64'] | ||
build_args += ['--', '/m'] | ||
cmake_args += ["-A", "x64"] | ||
build_args += ["--", "/m"] | ||
else: | ||
cmake_args += [f'-DCMAKE_BUILD_TYPE={cfg}'] | ||
build_args += ['--', '-j2'] | ||
cmake_args += [f"-DCMAKE_BUILD_TYPE={cfg}"] | ||
build_args += ["--", "-j2"] | ||
|
||
env["CXXFLAGS"] = ( | ||
f'{env.get("CXXFLAGS", "")} -DVERSION_INFO=\\"{self.distribution.get_version()}\\"' | ||
) | ||
|
||
env['CXXFLAGS'] = f'{env.get("CXXFLAGS", "")} -DVERSION_INFO=\\"{self.distribution.get_version()}\\"' | ||
|
||
if not os.path.exists(self.build_temp): | ||
os.makedirs(self.build_temp) | ||
|
||
print("CMake args:", cmake_args) | ||
print("Build args:", build_args) | ||
|
||
subprocess.check_call(['cmake', ext.sourcedir] + cmake_args, cwd=self.build_temp, env=env) | ||
subprocess.check_call(['cmake', '--build', '.'] + build_args, cwd=self.build_temp) | ||
print(f"Extension will be built in: {extdir}") | ||
print( | ||
f"Building for Python {python_version} on {target_platform} with acceleration: {acceleration}" | ||
) | ||
|
||
subprocess.check_call( | ||
["cmake", ext.sourcedir] + cmake_args, cwd=self.build_temp, env=env | ||
) | ||
subprocess.check_call( | ||
["cmake", "--build", "."] + build_args, cwd=self.build_temp | ||
) | ||
|
||
|
||
setup( | ||
name='simpler-whisper', | ||
version='0.1.0', | ||
author='Roy Shilkrot', | ||
author_email='[email protected]', | ||
description='A simple Python wrapper for whisper.cpp', | ||
long_description='', | ||
ext_modules=[CMakeExtension('simpler_whisper._whisper_cpp')], | ||
name="simpler-whisper", | ||
version="0.2.0", | ||
author="Roy Shilkrot", | ||
author_email="[email protected]", | ||
description="A simple Python wrapper for whisper.cpp", | ||
long_description="", | ||
ext_modules=[CMakeExtension("simpler_whisper._whisper_cpp")], | ||
cmdclass=dict(build_ext=CMakeBuild), | ||
zip_safe=False, | ||
) | ||
packages=[ | ||
"simpler_whisper" | ||
], # Add this line to ensure the package directory is created | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.