blis


Nameblis JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://github.com/explosion/cython-blis
SummaryThe Blis BLAS-like linear algebra library, as a self-contained C-extension.
upload_time2024-09-13 08:22:38
maintainerNone
docs_urlNone
authorExplosion
requires_pythonNone
licenseBSD-3-Clause
keywords
VCS
bugtrack_url
requirements numpy pytest cython hypothesis
Travis-CI
coveralls test coverage No coveralls.
            <a href="https://explosion.ai"><img src="https://explosion.ai/assets/img/logo.svg" width="125" height="125" align="right" /></a>

# Cython BLIS: Fast BLAS-like operations from Python and Cython, without the tears

This repository provides the
[Blis linear algebra](https://github.com/flame/blis) routines as a
self-contained Python C-extension.

Currently, we only supports single-threaded execution, as this is actually best
for our workloads (ML inference).

[![tests](https://github.com/explosion/cython-blis/actions/workflows/tests.yml/badge.svg)](https://github.com/explosion/cython-blis/actions/workflows/tests.yml)
[![pypi Version](https://img.shields.io/pypi/v/blis.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/blis)
[![conda](https://img.shields.io/conda/vn/conda-forge/cython-blis.svg?style=flat-square&logo=conda-forge&logoColor=white)](https://anaconda.org/conda-forge/cython-blis)
[![Python wheels](https://img.shields.io/badge/wheels-%E2%9C%93-4c1.svg?longCache=true&style=flat-square&logo=python&logoColor=white)](https://github.com/explosion/wheelwright/releases)

## Installation

You can install the package via pip, first making sure that `pip`, `setuptools`,
and `wheel` are up-to-date:

```bash
pip install -U pip setuptools wheel
pip install blis
```

Wheels should be available, so installation should be fast. If you want to
install from source and you're on Windows, you'll need to install LLVM.

### Building BLIS for alternative architectures

The provided wheels should work on x86_64 and osx/arm64 architectures.
Unfortunately we do not currently know a way to provide different wheels for
alternative architectures, and we cannot provide a single binary that works
everywhere. So if the wheel doesn't work for your CPU, you'll need to specify
source distribution, and tell Blis your CPU architecture using the `BLIS_ARCH`
environment variable.

#### a) Install with auto-detected CPU support

```bash
pip install spacy --no-binary blis
```

#### b) Install using an existing configuration

Provide an architecture from the
[supported configurations](https://github.com/explosion/cython-blis/tree/v0.9.0/blis/_src/make).

```bash
BLIS_ARCH="power9" pip install spacy --no-binary blis
```

#### c) Install with generic arch support

> ⚠️ `generic` is not optimized for any particular CPU and is extremely slow.
> Only recommended for testing!

```bash
BLIS_ARCH="generic" pip install spacy --no-binary blis
```

#### d) Build specific support

In order to compile Blis, `cython-blis` bundles makefile scripts for specific
architectures, that are compiled by running the Blis build system and logging
the commands. We do not yet have logs for every architecture, as there are some
architectures we have not had access to.

[See here](https://github.com/flame/blis/blob/0.9.0/config_registry) for list of
architectures. For example, here's how to build support for the Intel
architecture `knl`:

```bash
git clone https://github.com/explosion/cython-blis && cd cython-blis
git pull && git submodule init && git submodule update && git submodule status
python3 -m venv venv
source venv/bin/activate
pip install -U pip setuptools wheel
pip install -r requirements.txt
./bin/generate-make-jsonl linux knl
BLIS_ARCH="knl" python setup.py build_ext --inplace
BLIS_ARCH="knl" python setup.py bdist_wheel
```

Fingers crossed, this will build you a wheel that supports your platform. You
could then [submit a PR](https://github.com/explosion/cython-blis/pulls) with
the `blis/_src/make/linux-knl.jsonl` and `blis/_src/include/linux-knl/blis.h`
files so that you can run:

```bash
BLIS_ARCH="knl" pip install --no-binary=blis
```

## Usage

Two APIs are provided: a high-level Python API, and direct
[Cython](http://cython.org) access, which provides fused-type, nogil Cython
bindings to the underlying Blis linear algebra library. Fused types are a simple
template mechanism, allowing just a touch of compile-time generic programming:

```python
cimport blis.cy
A = <float*>calloc(nN * nI, sizeof(float))
B = <float*>calloc(nO * nI, sizeof(float))
C = <float*>calloc(nr_b0 * nr_b1, sizeof(float))
blis.cy.gemm(blis.cy.NO_TRANSPOSE, blis.cy.NO_TRANSPOSE,
             nO, nI, nN,
             1.0, A, nI, 1, B, nO, 1,
             1.0, C, nO, 1)
```

Bindings have been added as we've needed them. Please submit pull requests if
the library is missing some functions you require.

## Development

To build the source package, you should run the following command:

```bash
./bin/update-vendored-source
```

This populates the `blis/_src` folder for the various architectures, using the
`flame-blis` submodule.

## Updating the build files

In order to compile the Blis sources, we use jsonl files that provide the
explicit compiler flags. We build these jsonl files by running Blis's build
system, and then converting the log. This avoids us having to replicate the
build system within Python: we just use the jsonl to make a bunch of subprocess
calls. To support a new OS/architecture combination, we have to provide the
jsonl file and the header.

### Linux

The Linux build files need to be produced from within the manylinux2014 Docker
container, so that they will be compatible with the wheel building process.

First, install docker. Then do the following to start the container:

    sudo docker run -it quay.io/pypa/manylinux2014_x86_64:latest

Once within the container, the following commands should check out the repo and
build the jsonl files for the generic arch:

    mkdir /usr/local/repos
    cd /usr/local/repos
    git clone https://github.com/explosion/cython-blis && cd cython-blis
    git pull && git submodule init && git submodule update && git submodule
    status
    /opt/python/cp36-cp36m/bin/python -m venv env3.6
    source env3.6/bin/activate
    pip install -r requirements.txt
    ./bin/generate-make-jsonl linux generic --export
    BLIS_ARCH=generic python setup.py build_ext --inplace
    # N.B.: don't copy to /tmp, docker cp doesn't work from there.
    cp blis/_src/include/linux-generic/blis.h /linux-generic-blis.h
    cp blis/_src/make/linux-generic.jsonl /

Then from a new terminal, retrieve the two files we need out of the container:

    sudo docker ps -l # Get the container ID
    # When I'm in Vagrant, I need to go via cat -- but then I end up with dummy
    # lines at the top and bottom. Sigh. If you don't have that problem and
    # sudo docker cp just works, just copy the file.
    sudo docker cp aa9d42588791:/linux-generic-blis.h - | cat > linux-generic-blis.h
    sudo docker cp aa9d42588791:/linux-generic.jsonl - | cat > linux-generic.jsonl

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/explosion/cython-blis",
    "name": "blis",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Explosion",
    "author_email": "contact@explosion.ai",
    "download_url": "https://files.pythonhosted.org/packages/bd/e4/741f20c9b767330e2605d4c71a775303cb6a9c72764b8802232fe6c7afad/blis-1.0.1.tar.gz",
    "platform": null,
    "description": "<a href=\"https://explosion.ai\"><img src=\"https://explosion.ai/assets/img/logo.svg\" width=\"125\" height=\"125\" align=\"right\" /></a>\n\n# Cython BLIS: Fast BLAS-like operations from Python and Cython, without the tears\n\nThis repository provides the\n[Blis linear algebra](https://github.com/flame/blis) routines as a\nself-contained Python C-extension.\n\nCurrently, we only supports single-threaded execution, as this is actually best\nfor our workloads (ML inference).\n\n[![tests](https://github.com/explosion/cython-blis/actions/workflows/tests.yml/badge.svg)](https://github.com/explosion/cython-blis/actions/workflows/tests.yml)\n[![pypi Version](https://img.shields.io/pypi/v/blis.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/blis)\n[![conda](https://img.shields.io/conda/vn/conda-forge/cython-blis.svg?style=flat-square&logo=conda-forge&logoColor=white)](https://anaconda.org/conda-forge/cython-blis)\n[![Python wheels](https://img.shields.io/badge/wheels-%E2%9C%93-4c1.svg?longCache=true&style=flat-square&logo=python&logoColor=white)](https://github.com/explosion/wheelwright/releases)\n\n## Installation\n\nYou can install the package via pip, first making sure that `pip`, `setuptools`,\nand `wheel` are up-to-date:\n\n```bash\npip install -U pip setuptools wheel\npip install blis\n```\n\nWheels should be available, so installation should be fast. If you want to\ninstall from source and you're on Windows, you'll need to install LLVM.\n\n### Building BLIS for alternative architectures\n\nThe provided wheels should work on x86_64 and osx/arm64 architectures.\nUnfortunately we do not currently know a way to provide different wheels for\nalternative architectures, and we cannot provide a single binary that works\neverywhere. So if the wheel doesn't work for your CPU, you'll need to specify\nsource distribution, and tell Blis your CPU architecture using the `BLIS_ARCH`\nenvironment variable.\n\n#### a) Install with auto-detected CPU support\n\n```bash\npip install spacy --no-binary blis\n```\n\n#### b) Install using an existing configuration\n\nProvide an architecture from the\n[supported configurations](https://github.com/explosion/cython-blis/tree/v0.9.0/blis/_src/make).\n\n```bash\nBLIS_ARCH=\"power9\" pip install spacy --no-binary blis\n```\n\n#### c) Install with generic arch support\n\n> \u26a0\ufe0f `generic` is not optimized for any particular CPU and is extremely slow.\n> Only recommended for testing!\n\n```bash\nBLIS_ARCH=\"generic\" pip install spacy --no-binary blis\n```\n\n#### d) Build specific support\n\nIn order to compile Blis, `cython-blis` bundles makefile scripts for specific\narchitectures, that are compiled by running the Blis build system and logging\nthe commands. We do not yet have logs for every architecture, as there are some\narchitectures we have not had access to.\n\n[See here](https://github.com/flame/blis/blob/0.9.0/config_registry) for list of\narchitectures. For example, here's how to build support for the Intel\narchitecture `knl`:\n\n```bash\ngit clone https://github.com/explosion/cython-blis && cd cython-blis\ngit pull && git submodule init && git submodule update && git submodule status\npython3 -m venv venv\nsource venv/bin/activate\npip install -U pip setuptools wheel\npip install -r requirements.txt\n./bin/generate-make-jsonl linux knl\nBLIS_ARCH=\"knl\" python setup.py build_ext --inplace\nBLIS_ARCH=\"knl\" python setup.py bdist_wheel\n```\n\nFingers crossed, this will build you a wheel that supports your platform. You\ncould then [submit a PR](https://github.com/explosion/cython-blis/pulls) with\nthe `blis/_src/make/linux-knl.jsonl` and `blis/_src/include/linux-knl/blis.h`\nfiles so that you can run:\n\n```bash\nBLIS_ARCH=\"knl\" pip install --no-binary=blis\n```\n\n## Usage\n\nTwo APIs are provided: a high-level Python API, and direct\n[Cython](http://cython.org) access, which provides fused-type, nogil Cython\nbindings to the underlying Blis linear algebra library. Fused types are a simple\ntemplate mechanism, allowing just a touch of compile-time generic programming:\n\n```python\ncimport blis.cy\nA = <float*>calloc(nN * nI, sizeof(float))\nB = <float*>calloc(nO * nI, sizeof(float))\nC = <float*>calloc(nr_b0 * nr_b1, sizeof(float))\nblis.cy.gemm(blis.cy.NO_TRANSPOSE, blis.cy.NO_TRANSPOSE,\n             nO, nI, nN,\n             1.0, A, nI, 1, B, nO, 1,\n             1.0, C, nO, 1)\n```\n\nBindings have been added as we've needed them. Please submit pull requests if\nthe library is missing some functions you require.\n\n## Development\n\nTo build the source package, you should run the following command:\n\n```bash\n./bin/update-vendored-source\n```\n\nThis populates the `blis/_src` folder for the various architectures, using the\n`flame-blis` submodule.\n\n## Updating the build files\n\nIn order to compile the Blis sources, we use jsonl files that provide the\nexplicit compiler flags. We build these jsonl files by running Blis's build\nsystem, and then converting the log. This avoids us having to replicate the\nbuild system within Python: we just use the jsonl to make a bunch of subprocess\ncalls. To support a new OS/architecture combination, we have to provide the\njsonl file and the header.\n\n### Linux\n\nThe Linux build files need to be produced from within the manylinux2014 Docker\ncontainer, so that they will be compatible with the wheel building process.\n\nFirst, install docker. Then do the following to start the container:\n\n    sudo docker run -it quay.io/pypa/manylinux2014_x86_64:latest\n\nOnce within the container, the following commands should check out the repo and\nbuild the jsonl files for the generic arch:\n\n    mkdir /usr/local/repos\n    cd /usr/local/repos\n    git clone https://github.com/explosion/cython-blis && cd cython-blis\n    git pull && git submodule init && git submodule update && git submodule\n    status\n    /opt/python/cp36-cp36m/bin/python -m venv env3.6\n    source env3.6/bin/activate\n    pip install -r requirements.txt\n    ./bin/generate-make-jsonl linux generic --export\n    BLIS_ARCH=generic python setup.py build_ext --inplace\n    # N.B.: don't copy to /tmp, docker cp doesn't work from there.\n    cp blis/_src/include/linux-generic/blis.h /linux-generic-blis.h\n    cp blis/_src/make/linux-generic.jsonl /\n\nThen from a new terminal, retrieve the two files we need out of the container:\n\n    sudo docker ps -l # Get the container ID\n    # When I'm in Vagrant, I need to go via cat -- but then I end up with dummy\n    # lines at the top and bottom. Sigh. If you don't have that problem and\n    # sudo docker cp just works, just copy the file.\n    sudo docker cp aa9d42588791:/linux-generic-blis.h - | cat > linux-generic-blis.h\n    sudo docker cp aa9d42588791:/linux-generic.jsonl - | cat > linux-generic.jsonl\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "The Blis BLAS-like linear algebra library, as a self-contained C-extension.",
    "version": "1.0.1",
    "project_urls": {
        "Homepage": "https://github.com/explosion/cython-blis"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da8527d8315bc06d230f93cf5e1aab7131e6fa179d301118ea7a2afdebfefb77",
                "md5": "40d0409bf8ab8466ac3001fe95809015",
                "sha256": "232f68f78fd9ab2f8bf01424cd6a265edd97e14e26186ef48eca1b6f212e928f"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40d0409bf8ab8466ac3001fe95809015",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 7734193,
            "upload_time": "2024-09-13T08:21:34",
            "upload_time_iso_8601": "2024-09-13T08:21:34.589667Z",
            "url": "https://files.pythonhosted.org/packages/da/85/27d8315bc06d230f93cf5e1aab7131e6fa179d301118ea7a2afdebfefb77/blis-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8b5d9e23c011549e02f1c11f61e0f460682d9e9b5ac167582b8f74c41c482db",
                "md5": "fd2e203d750f8b02df62d937dae428fb",
                "sha256": "90a796d8311b6439d63c91ed09163be995173a1ca5bedc510c1b45cbdbb7886c"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fd2e203d750f8b02df62d937dae428fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1089525,
            "upload_time": "2024-09-13T08:21:37",
            "upload_time_iso_8601": "2024-09-13T08:21:37.795643Z",
            "url": "https://files.pythonhosted.org/packages/e8/b5/d9e23c011549e02f1c11f61e0f460682d9e9b5ac167582b8f74c41c482db/blis-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c8c958a37d551b2402f9c9cdc1fc0619532c5b71682e6f811de03e0836bd597",
                "md5": "69f80760b9b95c5540f2756d7c4e0677",
                "sha256": "388b0b0c55df884eb5853292d53c7c3daaa009b3d991e7a95413e46e82e88058"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69f80760b9b95c5540f2756d7c4e0677",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2612422,
            "upload_time": "2024-09-13T08:21:39",
            "upload_time_iso_8601": "2024-09-13T08:21:39.299291Z",
            "url": "https://files.pythonhosted.org/packages/3c/8c/958a37d551b2402f9c9cdc1fc0619532c5b71682e6f811de03e0836bd597/blis-1.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a78a3da934ff0d63418a3ed72934b639346ac9f5d0b0a405be9a3c5006c14188",
                "md5": "a13ccd5bd42f5655f678d9dac0b722cf",
                "sha256": "c3c89149eed90c3b76f50c88d8d68661ca07d8b4bfaa517eedf5b77ddf640bb1"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a13ccd5bd42f5655f678d9dac0b722cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 9160923,
            "upload_time": "2024-09-13T08:21:41",
            "upload_time_iso_8601": "2024-09-13T08:21:41.405851Z",
            "url": "https://files.pythonhosted.org/packages/a7/8a/3da934ff0d63418a3ed72934b639346ac9f5d0b0a405be9a3c5006c14188/blis-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "781158447ae64cf4a4ad25bddd06ad8893f54b712948d204213cbcce1752934d",
                "md5": "31c50a76243b9f3f88036630f53c9e54",
                "sha256": "f23cff163c0a256b580c33364f1598a4f49f532074c673a734d9b02a101adce1"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "31c50a76243b9f3f88036630f53c9e54",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3109741,
            "upload_time": "2024-09-13T08:21:44",
            "upload_time_iso_8601": "2024-09-13T08:21:44.353317Z",
            "url": "https://files.pythonhosted.org/packages/78/11/58447ae64cf4a4ad25bddd06ad8893f54b712948d204213cbcce1752934d/blis-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b5b63c4f774b04ad4d286759eecf77bcf0be82ecdbbebec5b52362d4835ea85",
                "md5": "2169d059978340845ee76732bb58924c",
                "sha256": "8d4d403d4b4979d5b1e6f12637ed25fb3bd4e260440997d9ba9e752f9e9c91cb"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2169d059978340845ee76732bb58924c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11621461,
            "upload_time": "2024-09-13T08:21:46",
            "upload_time_iso_8601": "2024-09-13T08:21:46.042719Z",
            "url": "https://files.pythonhosted.org/packages/4b/5b/63c4f774b04ad4d286759eecf77bcf0be82ecdbbebec5b52362d4835ea85/blis-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4155c52ba556b5941a612c53c38282f77da3d52e517dc99572b415db8ceff4e5",
                "md5": "f8696ed479673393ac1397c4a8182e4d",
                "sha256": "a6440bed28f405ab81d1d57b3fb96b7ea8b5b1f3d3a0d29860b0a814fe4ece27"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f8696ed479673393ac1397c4a8182e4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 6360312,
            "upload_time": "2024-09-13T08:21:48",
            "upload_time_iso_8601": "2024-09-13T08:21:48.348441Z",
            "url": "https://files.pythonhosted.org/packages/41/55/c52ba556b5941a612c53c38282f77da3d52e517dc99572b415db8ceff4e5/blis-1.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bb3d43c54d950e832799f3cde91a62bb87820a0f1d9df5c33a9981e4242bb92",
                "md5": "de433741a1a1d0e1ed6b25593eb067c2",
                "sha256": "5076b33c04b864709d0d22c40e9f57dc06ee9c2bd2f7ab72b10ffa74a470d9e6"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de433741a1a1d0e1ed6b25593eb067c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 7736683,
            "upload_time": "2024-09-13T08:21:50",
            "upload_time_iso_8601": "2024-09-13T08:21:50.092897Z",
            "url": "https://files.pythonhosted.org/packages/2b/b3/d43c54d950e832799f3cde91a62bb87820a0f1d9df5c33a9981e4242bb92/blis-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bef95bcd46e09735b8b2de83b11f0387e4e411a00bcc65190df2ca0532959e4",
                "md5": "3cc397c86ec33ffe38d45115533fc351",
                "sha256": "b6b1f791fa3eeb267b97f5877a6bdcc09c868603b84422acf7fd138ec9b96c3c"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3cc397c86ec33ffe38d45115533fc351",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1090349,
            "upload_time": "2024-09-13T08:21:52",
            "upload_time_iso_8601": "2024-09-13T08:21:52.186055Z",
            "url": "https://files.pythonhosted.org/packages/1b/ef/95bcd46e09735b8b2de83b11f0387e4e411a00bcc65190df2ca0532959e4/blis-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49d6e97bd559d5076a3ac2a0efb02e71675d4e7db02986b803adcdcd09e1278e",
                "md5": "3f250f8889dff47e0900f5655860f72e",
                "sha256": "3c249649c0f7c06b2368a9d5c6b12209255981e96304c6140a3beffaff6cae62"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3f250f8889dff47e0900f5655860f72e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2740026,
            "upload_time": "2024-09-13T08:21:54",
            "upload_time_iso_8601": "2024-09-13T08:21:54.455495Z",
            "url": "https://files.pythonhosted.org/packages/49/d6/e97bd559d5076a3ac2a0efb02e71675d4e7db02986b803adcdcd09e1278e/blis-1.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "102b75efbdf5a6bd2b3629ff9c09674292fca2784bfc40aef82afd1232e9af29",
                "md5": "9def2f87dc8d3ec1f25c9da7458c6f76",
                "sha256": "632580f1d3ff44fb36e8a21a9457f23aeaff5d35d108bd2ef0393b9f6d85de93"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9def2f87dc8d3ec1f25c9da7458c6f76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 9279223,
            "upload_time": "2024-09-13T08:21:57",
            "upload_time_iso_8601": "2024-09-13T08:21:57.015815Z",
            "url": "https://files.pythonhosted.org/packages/10/2b/75efbdf5a6bd2b3629ff9c09674292fca2784bfc40aef82afd1232e9af29/blis-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f933297c2045145726f2c00f64a043c89f203731d4df183bbb70c1c7ee020a2d",
                "md5": "da23a60a42dfdd7b12e2aa5e5cafa192",
                "sha256": "64393297304712818020734fa75735f4543243eefc44858ef3c99375d5bb029a"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "da23a60a42dfdd7b12e2aa5e5cafa192",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3231607,
            "upload_time": "2024-09-13T08:21:59",
            "upload_time_iso_8601": "2024-09-13T08:21:59.328767Z",
            "url": "https://files.pythonhosted.org/packages/f9/33/297c2045145726f2c00f64a043c89f203731d4df183bbb70c1c7ee020a2d/blis-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22a8136bbeed06b4e4f2bef469f4506cfdb14e09fdc1aa8f616c2837298c88ef",
                "md5": "518a8e1b7bbb9bd5ce300e841e61e6be",
                "sha256": "d3b3293c795007dbf4ba8ceaf3184a6bf510ca3252d0229607792f52e8702bb2"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "518a8e1b7bbb9bd5ce300e841e61e6be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11772301,
            "upload_time": "2024-09-13T08:22:01",
            "upload_time_iso_8601": "2024-09-13T08:22:01.655315Z",
            "url": "https://files.pythonhosted.org/packages/22/a8/136bbeed06b4e4f2bef469f4506cfdb14e09fdc1aa8f616c2837298c88ef/blis-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "041add7c9119e6e106f98fdfb015a5f571532960ef0a3e0f8b62d85607249ca4",
                "md5": "f87cdfca869be7e40e94d44bc4143481",
                "sha256": "60e1b03663bee7a37b4b3131b4179d283868ccb10a3260fed01dd980866bc49f"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f87cdfca869be7e40e94d44bc4143481",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 6341063,
            "upload_time": "2024-09-13T08:22:03",
            "upload_time_iso_8601": "2024-09-13T08:22:03.927291Z",
            "url": "https://files.pythonhosted.org/packages/04/1a/dd7c9119e6e106f98fdfb015a5f571532960ef0a3e0f8b62d85607249ca4/blis-1.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "373dc2fcd7fbb663e2fab38a72ff05991b84e1b7ab28b2744904d87dc61680ac",
                "md5": "efcd29d9329ec9c850fe6911cfe6457e",
                "sha256": "e031b6cf0dcc026d697a860bf53bc02b5f26ddb5a3ecd23933c51cf22803825b"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efcd29d9329ec9c850fe6911cfe6457e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 7743940,
            "upload_time": "2024-09-13T08:22:06",
            "upload_time_iso_8601": "2024-09-13T08:22:06.613811Z",
            "url": "https://files.pythonhosted.org/packages/37/3d/c2fcd7fbb663e2fab38a72ff05991b84e1b7ab28b2744904d87dc61680ac/blis-1.0.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3124e3e53642d4089ea8e6ec4755358603aa597e17db08e42d8c4b18fb7eadb7",
                "md5": "1fa12632f3f0475b626d566121e5c958",
                "sha256": "f860c1723928c40d4920a05130d21a600dcb5fbf07aa1fe8f4bdff2c4a5238a5"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1fa12632f3f0475b626d566121e5c958",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1091241,
            "upload_time": "2024-09-13T08:22:08",
            "upload_time_iso_8601": "2024-09-13T08:22:08.135944Z",
            "url": "https://files.pythonhosted.org/packages/31/24/e3e53642d4089ea8e6ec4755358603aa597e17db08e42d8c4b18fb7eadb7/blis-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8fa78fdcbc74ce98c9d70d3646dd9677ad893fe020fffbbe99463ca9003e782",
                "md5": "a51ece7c47bdd3004ef3aa72b3bc85f0",
                "sha256": "399196506829c278836028511f351f32f2c992263e91ef876c6bc41dc2483d3d"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a51ece7c47bdd3004ef3aa72b3bc85f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2680553,
            "upload_time": "2024-09-13T08:22:10",
            "upload_time_iso_8601": "2024-09-13T08:22:10.524950Z",
            "url": "https://files.pythonhosted.org/packages/f8/fa/78fdcbc74ce98c9d70d3646dd9677ad893fe020fffbbe99463ca9003e782/blis-1.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ed96541ab3b9eb3a7a4417cae4073a67498a742e14da123242a3c96b959ec64",
                "md5": "ad1a11a87fbfbc9c3510304c8c5a20ba",
                "sha256": "ce20590af2c6ff02d66ffed4148ea8ea1e3f772febb8471e3e58614e71d428c1"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad1a11a87fbfbc9c3510304c8c5a20ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 9250724,
            "upload_time": "2024-09-13T08:22:12",
            "upload_time_iso_8601": "2024-09-13T08:22:12.547196Z",
            "url": "https://files.pythonhosted.org/packages/6e/d9/6541ab3b9eb3a7a4417cae4073a67498a742e14da123242a3c96b959ec64/blis-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95689d05b09291f15f9a5c04eebe45172fbc4de3a6f7a6108df2557eddd5b390",
                "md5": "420ab7e86675243ae5f85991cc0b00bb",
                "sha256": "e6ad60d9cd81523429f46109b31e3c4bbdd0dc28a328d6dbdcdff8447a53a61e"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "420ab7e86675243ae5f85991cc0b00bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3181680,
            "upload_time": "2024-09-13T08:22:15",
            "upload_time_iso_8601": "2024-09-13T08:22:15.038908Z",
            "url": "https://files.pythonhosted.org/packages/95/68/9d05b09291f15f9a5c04eebe45172fbc4de3a6f7a6108df2557eddd5b390/blis-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1529313887b89e9509438310a0807f8396c6f8f63fd095b699368e76890e8e4a",
                "md5": "fb9ec620acf167683c62682ec9048f64",
                "sha256": "eb553b233fc815957c5bbb5d2fc2f6d2b199c123ec15c5000db935662849e543"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb9ec620acf167683c62682ec9048f64",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11716266,
            "upload_time": "2024-09-13T08:22:17",
            "upload_time_iso_8601": "2024-09-13T08:22:17.503575Z",
            "url": "https://files.pythonhosted.org/packages/15/29/313887b89e9509438310a0807f8396c6f8f63fd095b699368e76890e8e4a/blis-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a5d81aa3ddf94626806eb898b6d481a90a5e82bf55b10087556464ac05c120b",
                "md5": "f9dbcd08a388ff75d293e0a92b009921",
                "sha256": "376188493f590c4310ca534b687ef96c21c8224eb1ef4a0420703eebe175d6fa"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9dbcd08a388ff75d293e0a92b009921",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 6370847,
            "upload_time": "2024-09-13T08:22:19",
            "upload_time_iso_8601": "2024-09-13T08:22:19.763638Z",
            "url": "https://files.pythonhosted.org/packages/5a/5d/81aa3ddf94626806eb898b6d481a90a5e82bf55b10087556464ac05c120b/blis-1.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5ed2761060f0e4d89e855e09bac4b3056402e50b1ffc2da921b28c8514417f3",
                "md5": "8f063aebd15131428d2f65d12effae4d",
                "sha256": "136eae35dd9fd6c1923b95d5623aa174abd43d5b764bed79fd37bf6ad40282e7"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f063aebd15131428d2f65d12effae4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 7735325,
            "upload_time": "2024-09-13T08:22:22",
            "upload_time_iso_8601": "2024-09-13T08:22:22.185190Z",
            "url": "https://files.pythonhosted.org/packages/d5/ed/2761060f0e4d89e855e09bac4b3056402e50b1ffc2da921b28c8514417f3/blis-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba449a3194a055fc50f095f77748fa7c13ec274db7bd7c1c0751df2e3180dcf4",
                "md5": "9a1b81d35c119b039b12606683a4bb4a",
                "sha256": "16b5a418c55825d0d7912f63befee865da7522ce8f388b8ef76224050c5f8386"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a1b81d35c119b039b12606683a4bb4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1090690,
            "upload_time": "2024-09-13T08:22:24",
            "upload_time_iso_8601": "2024-09-13T08:22:24.245160Z",
            "url": "https://files.pythonhosted.org/packages/ba/44/9a3194a055fc50f095f77748fa7c13ec274db7bd7c1c0751df2e3180dcf4/blis-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36ab9e6a3c4de8d678ee542b42288dcd32975e11cc5893361fa35a56ea0e9a08",
                "md5": "a84fe425a455229e45fddd43806b117f",
                "sha256": "806ab0838efa5e434e6fcdce86542601d0263256d483623bc86e91728a645de4"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a84fe425a455229e45fddd43806b117f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2617066,
            "upload_time": "2024-09-13T08:22:26",
            "upload_time_iso_8601": "2024-09-13T08:22:26.496207Z",
            "url": "https://files.pythonhosted.org/packages/36/ab/9e6a3c4de8d678ee542b42288dcd32975e11cc5893361fa35a56ea0e9a08/blis-1.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "313b291230d1d0e55711a874ae303cfbce3a3d1038d397b369b5d7c43f2aa1c2",
                "md5": "4b771e8f441c2a47a235d60c3e003bc8",
                "sha256": "33ad60cde863a7cf8e69fcf0c3b965ab0f804f0332adb35552788bb76660c97f"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b771e8f441c2a47a235d60c3e003bc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 9163705,
            "upload_time": "2024-09-13T08:22:28",
            "upload_time_iso_8601": "2024-09-13T08:22:28.363331Z",
            "url": "https://files.pythonhosted.org/packages/31/3b/291230d1d0e55711a874ae303cfbce3a3d1038d397b369b5d7c43f2aa1c2/blis-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71fa79b0a9c9859043a873c1038a25d817090bd1376c9bce2f6f5b4534b242bd",
                "md5": "d70283d00ae0b46c4b77772cd5193909",
                "sha256": "40459f37f430de0c6059631cc9f7588c3bccb6ade074571015ea09856b91cb69"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d70283d00ae0b46c4b77772cd5193909",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3114086,
            "upload_time": "2024-09-13T08:22:30",
            "upload_time_iso_8601": "2024-09-13T08:22:30.992577Z",
            "url": "https://files.pythonhosted.org/packages/71/fa/79b0a9c9859043a873c1038a25d817090bd1376c9bce2f6f5b4534b242bd/blis-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e123550d06f67873cdeaf06fd62a9dda53c740b57211e5e61e14b3d64a9ce845",
                "md5": "32299073326de8f8efaf2dca520df788",
                "sha256": "f0977eaba2d3f64df649201aa281cf3216e7bec18929a7374c3f3f36100db029"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32299073326de8f8efaf2dca520df788",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 11625428,
            "upload_time": "2024-09-13T08:22:33",
            "upload_time_iso_8601": "2024-09-13T08:22:33.506527Z",
            "url": "https://files.pythonhosted.org/packages/e1/23/550d06f67873cdeaf06fd62a9dda53c740b57211e5e61e14b3d64a9ce845/blis-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4706e731eccf0b8f88b0ed4f0a4bacb1deafa6966b74b692d74891e82b7aa429",
                "md5": "75a178d37fb4c823c8ae02f04d6a98f7",
                "sha256": "5b4c8298c49b25058462731139b711e35e73623280cee03c3b0804cbdee50c0d"
            },
            "downloads": -1,
            "filename": "blis-1.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "75a178d37fb4c823c8ae02f04d6a98f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 6360374,
            "upload_time": "2024-09-13T08:22:36",
            "upload_time_iso_8601": "2024-09-13T08:22:36.116047Z",
            "url": "https://files.pythonhosted.org/packages/47/06/e731eccf0b8f88b0ed4f0a4bacb1deafa6966b74b692d74891e82b7aa429/blis-1.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bde4741f20c9b767330e2605d4c71a775303cb6a9c72764b8802232fe6c7afad",
                "md5": "75ebb5631c66a980089ea05344250481",
                "sha256": "91739cd850ca8100dcddbd8ad66942cab20c9473cdea9a35b165b11d7b8d91e4"
            },
            "downloads": -1,
            "filename": "blis-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "75ebb5631c66a980089ea05344250481",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3577249,
            "upload_time": "2024-09-13T08:22:38",
            "upload_time_iso_8601": "2024-09-13T08:22:38.526082Z",
            "url": "https://files.pythonhosted.org/packages/bd/e4/741f20c9b767330e2605d4c71a775303cb6a9c72764b8802232fe6c7afad/blis-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-13 08:22:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "explosion",
    "github_project": "cython-blis",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "2.0.0"
                ],
                [
                    "<",
                    "3.0.0"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "cython",
            "specs": []
        },
        {
            "name": "hypothesis",
            "specs": [
                [
                    ">=",
                    "4.0.0"
                ],
                [
                    "<",
                    "7.0.0"
                ]
            ]
        }
    ],
    "lcname": "blis"
}
        
Elapsed time: 0.34240s