llama-cpp-turboquant/python
2020-11-11 07:25:31 +00:00
..
pybind11@06a54018c8 Readded pybind module 2020-11-01 13:44:28 +00:00
src Added array list functions 2020-11-11 07:17:53 +00:00
test Updated array mult file to align with example 2020-11-11 07:25:31 +00:00
CMakeLists.txt Updated build to rename kp 2020-11-03 08:00:20 +00:00
README.md Added instructions to push pypi python package 2020-11-08 17:05:27 +00:00

Python Bindings for Vulkan Kompute

Publishing to pypi

Build source distribution:

python setup.py sdist bdist_wheel

Push to test pypi registry:

python -m twine upload --repository testpypi dist/*

Install from test pypi:

python -m pip install --index-url https://test.pypi.org/simple/ --no-deps kp

Run tests in python/test directory:

python -m pytest

Push to official pypi registry:

python -m twine upload dist/*