blis


Nameblis JSON
Version 0.9.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_time2022-08-04 13:37:35
maintainer
docs_urlNone
authorExplosion
requires_python
licenseBSD
keywords
VCS
bugtrack_url
requirements numpy 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).

[![Azure Pipelines](https://img.shields.io/azure-devops/build/explosion-ai/public/6/master.svg?logo=azure-pipelines&style=flat-square)](https://dev.azure.com/explosion-ai/public/_build?definitionId=6)
[![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": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Explosion",
    "author_email": "contact@explosion.ai",
    "download_url": "https://files.pythonhosted.org/packages/74/1e/18f5068e5c4f2e10248f65bc0f799e9017f70749fa3f5c9fdd30be179784/blis-0.9.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 [Blis linear algebra](https://github.com/flame/blis)\nroutines as a self-contained Python C-extension.\n\nCurrently, we only supports single-threaded execution, as this is actually best for our workloads (ML inference).\n\n[![Azure Pipelines](https://img.shields.io/azure-devops/build/explosion-ai/public/6/master.svg?logo=azure-pipelines&style=flat-square)](https://dev.azure.com/explosion-ai/public/_build?definitionId=6)\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 install 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. 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.\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 [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. 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 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.\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 architecture `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\n`blis/_src/include/linux-knl/blis.h` files 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\nCython bindings to the underlying Blis linear algebra library. Fused\ntypes are a simple template mechanism, allowing just a touch of\ncompile-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\nDocker container, so that they will be compatible with the wheel building\nprocess.\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",
    "summary": "The Blis BLAS-like linear algebra library, as a self-contained C-extension.",
    "version": "0.9.1",
    "project_urls": {
        "Homepage": "https://github.com/explosion/cython-blis"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c617f1037fe593fc8ff0f6b198705c3d7d3be030f06cb007a2a547afc02b22b",
                "md5": "a85e3f535b03b76503aaa10331f65ac0",
                "sha256": "dc946bb41205c45c2e195d5cd75876c5808cb3ac42eaaf9041dc3255a3da7ca7"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a85e3f535b03b76503aaa10331f65ac0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5303619,
            "upload_time": "2022-08-04T13:36:52",
            "upload_time_iso_8601": "2022-08-04T13:36:52.535467Z",
            "url": "https://files.pythonhosted.org/packages/0c/61/7f1037fe593fc8ff0f6b198705c3d7d3be030f06cb007a2a547afc02b22b/blis-0.9.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27c55c2291f1982112214ec8201fdac30fa2c5b9e4df8f66b23e826eb5ad246d",
                "md5": "08b7a161ce4b35fc0cbcea2e3c3e3e83",
                "sha256": "6c855db2f917bc7ff45499ce4fc7bb95298134534912580758db19dcb5bb2d20"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "08b7a161ce4b35fc0cbcea2e3c3e3e83",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 893555,
            "upload_time": "2022-08-04T13:36:54",
            "upload_time_iso_8601": "2022-08-04T13:36:54.297079Z",
            "url": "https://files.pythonhosted.org/packages/27/c5/5c2291f1982112214ec8201fdac30fa2c5b9e4df8f66b23e826eb5ad246d/blis-0.9.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6796661731c24a875f1d41b61a9b0a0cb4699e3f97eb34d2e758c68237c32a46",
                "md5": "3a01964e4c2ac1b569116aa878de0808",
                "sha256": "ceab0b6ab1c254d0bf4a3951adb0ad7e1c92b90475fe1fbabe81db029aef5bfd"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a01964e4c2ac1b569116aa878de0808",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3469592,
            "upload_time": "2022-08-04T13:36:56",
            "upload_time_iso_8601": "2022-08-04T13:36:56.252621Z",
            "url": "https://files.pythonhosted.org/packages/67/96/661731c24a875f1d41b61a9b0a0cb4699e3f97eb34d2e758c68237c32a46/blis-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39d446c27b9fd4c693c332d0d93f04af3694765dee8276bde4cf81f42c048fa0",
                "md5": "9c59b7d94a08a295b98267b345fd1032",
                "sha256": "e7f0c3aecb5162b8b19d0d6fe2dd33a002710252607ca55f1ff67d15d4ce6d4e"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c59b7d94a08a295b98267b345fd1032",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 7832630,
            "upload_time": "2022-08-04T13:36:59",
            "upload_time_iso_8601": "2022-08-04T13:36:59.293432Z",
            "url": "https://files.pythonhosted.org/packages/39/d4/46c27b9fd4c693c332d0d93f04af3694765dee8276bde4cf81f42c048fa0/blis-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e71b92200ac645d548e10eea17d41fc8f1939de916046f980efe267610c15254",
                "md5": "1a44cc0d03a55467bcc63ea0bae1f55a",
                "sha256": "c509241073b3b6c16c7aa2e2acd6dd45f4427c6b4fde7615b2d016a6ace1ed87"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1a44cc0d03a55467bcc63ea0bae1f55a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 7428335,
            "upload_time": "2022-08-04T13:37:01",
            "upload_time_iso_8601": "2022-08-04T13:37:01.364919Z",
            "url": "https://files.pythonhosted.org/packages/e7/1b/92200ac645d548e10eea17d41fc8f1939de916046f980efe267610c15254/blis-0.9.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "606e847d06661405d23d232f34afc6ad9f3c9f039ec497df10de5ed4929de0f8",
                "md5": "3d7c546b3de5d9cd8f0dab2a936a384f",
                "sha256": "84c98ab9cf4df12936794ff13bb145cb8c825cbaa9a284e3767f0fe2d7d6ae9c"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d7c546b3de5d9cd8f0dab2a936a384f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5299090,
            "upload_time": "2022-08-04T13:37:03",
            "upload_time_iso_8601": "2022-08-04T13:37:03.267932Z",
            "url": "https://files.pythonhosted.org/packages/60/6e/847d06661405d23d232f34afc6ad9f3c9f039ec497df10de5ed4929de0f8/blis-0.9.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68a171fbd48edb3b591bec702e1fca1108a77be31b2ddc6ee59ad2f0a184bfbe",
                "md5": "9ff0873e7f4527e065dba90d2373cf17",
                "sha256": "4802e0000b3d22e4f6c1d15aa31348337a26d26ff0ac832d6be367699cb6c49f"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ff0873e7f4527e065dba90d2373cf17",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3470498,
            "upload_time": "2022-08-04T13:37:05",
            "upload_time_iso_8601": "2022-08-04T13:37:05.225338Z",
            "url": "https://files.pythonhosted.org/packages/68/a1/71fbd48edb3b591bec702e1fca1108a77be31b2ddc6ee59ad2f0a184bfbe/blis-0.9.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41b4364f307cc57cdcb23adaf5ec4747a79938e6b787ffe28d9b86f7b5a97b83",
                "md5": "7b8f34a9c80bbffd7b806ae348ce8f05",
                "sha256": "4b322ff0bb3bcd6cd03d9f9a7033885c12d6b3a6c959c7547e77f45d3277534e"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b8f34a9c80bbffd7b806ae348ce8f05",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 7830059,
            "upload_time": "2022-08-04T13:37:07",
            "upload_time_iso_8601": "2022-08-04T13:37:07.524341Z",
            "url": "https://files.pythonhosted.org/packages/41/b4/364f307cc57cdcb23adaf5ec4747a79938e6b787ffe28d9b86f7b5a97b83/blis-0.9.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b979eb0c0f33fcfdce8397939c8da13cafaa22b359aec23c7b1ff030cf8c1c6",
                "md5": "7ae5f9b02f8d77fed2cfed4636675940",
                "sha256": "0b6ce2e94824065d6fea99485b687717af4cc31ec9281bf4b02fd99172fe1db9"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7ae5f9b02f8d77fed2cfed4636675940",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 7419033,
            "upload_time": "2022-08-04T13:37:09",
            "upload_time_iso_8601": "2022-08-04T13:37:09.435712Z",
            "url": "https://files.pythonhosted.org/packages/3b/97/9eb0c0f33fcfdce8397939c8da13cafaa22b359aec23c7b1ff030cf8c1c6/blis-0.9.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ce8466d35f5cf996e975c5af65f8d69dbb2562c80b28fcef59a1d0b0a0427ca",
                "md5": "9ccde840f103cc525c135ffb95e1031b",
                "sha256": "49b326230e879f8a490349859e7732f41e97f9702f54a25948fcc49c133a2677"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ccde840f103cc525c135ffb95e1031b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5296963,
            "upload_time": "2022-08-04T13:37:11",
            "upload_time_iso_8601": "2022-08-04T13:37:11.401309Z",
            "url": "https://files.pythonhosted.org/packages/5c/e8/466d35f5cf996e975c5af65f8d69dbb2562c80b28fcef59a1d0b0a0427ca/blis-0.9.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e423884f319fe521ca1b210cdb34c5871a6f61517fa331d23adb29ea0924fb80",
                "md5": "57767db8273b321d4dfb85575f89074e",
                "sha256": "bf216ecab3986e2736f0f0b2cd9bf1717c56ca821b0fc361ba7f1d065fa2458e"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "57767db8273b321d4dfb85575f89074e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3470140,
            "upload_time": "2022-08-04T13:37:13",
            "upload_time_iso_8601": "2022-08-04T13:37:13.055612Z",
            "url": "https://files.pythonhosted.org/packages/e4/23/884f319fe521ca1b210cdb34c5871a6f61517fa331d23adb29ea0924fb80/blis-0.9.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78da732cf72fc2801b4c35ed67dbbe5862aa12709a5a5c98120cf41aac81e9e9",
                "md5": "1a1f646706685ff17d66a62d4e7fd653",
                "sha256": "db2c29b24023e82f230aa0d45df6acdd2d5ce620c50405ac661c642dbdbedb8a"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a1f646706685ff17d66a62d4e7fd653",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 7831609,
            "upload_time": "2022-08-04T13:37:15",
            "upload_time_iso_8601": "2022-08-04T13:37:15.054092Z",
            "url": "https://files.pythonhosted.org/packages/78/da/732cf72fc2801b4c35ed67dbbe5862aa12709a5a5c98120cf41aac81e9e9/blis-0.9.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d67ee17dbe2960db3b7f13fa59076c58550fcfcad454d3a8bff68e30f338cfee",
                "md5": "6f21f6c921edea0f03226f667cb3ac45",
                "sha256": "f4cdcac31b7c58f9ecb82165c72d053740c58a73e5be637034271be758b29326"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6f21f6c921edea0f03226f667cb3ac45",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 7424202,
            "upload_time": "2022-08-04T13:37:17",
            "upload_time_iso_8601": "2022-08-04T13:37:17.452894Z",
            "url": "https://files.pythonhosted.org/packages/d6/7e/e17dbe2960db3b7f13fa59076c58550fcfcad454d3a8bff68e30f338cfee/blis-0.9.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "394ea1ea4ee30b55c8ef084a8a2ea9fbf72db02bc553a36718286ae5a03fef79",
                "md5": "a1ed1ff013426a473cb69b09838e85a3",
                "sha256": "f64f96c552dd866d65c6414cab815d248d57630330f16d1244142a4339640d3f"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1ed1ff013426a473cb69b09838e85a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5297147,
            "upload_time": "2022-08-04T13:37:19",
            "upload_time_iso_8601": "2022-08-04T13:37:19.037877Z",
            "url": "https://files.pythonhosted.org/packages/39/4e/a1ea4ee30b55c8ef084a8a2ea9fbf72db02bc553a36718286ae5a03fef79/blis-0.9.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4b34de5868c6df968434b8bf1b7b76c100d9a69a58d83fb2f388278dce53593",
                "md5": "96d6ec6006c9dc9f12cc25a1ce5eba5d",
                "sha256": "9ee43fc0e675b1466f6d8c27ea98b9acdace2d5828ba6744a0f65ef29e0b9ebe"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96d6ec6006c9dc9f12cc25a1ce5eba5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 887405,
            "upload_time": "2022-08-04T13:37:20",
            "upload_time_iso_8601": "2022-08-04T13:37:20.736427Z",
            "url": "https://files.pythonhosted.org/packages/c4/b3/4de5868c6df968434b8bf1b7b76c100d9a69a58d83fb2f388278dce53593/blis-0.9.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3c8842fe598b551368ba5f2b7d046a103937c7edf77ebf8dc8ddde57af6aca3",
                "md5": "0b364331de4cbbfdd87b6c6702b737bb",
                "sha256": "693ad3dbb61c09a898f2590f58ab1c3132f281fc80dd5c36c19b87c1d1e6ba00"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0b364331de4cbbfdd87b6c6702b737bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3470401,
            "upload_time": "2022-08-04T13:37:21",
            "upload_time_iso_8601": "2022-08-04T13:37:21.992215Z",
            "url": "https://files.pythonhosted.org/packages/c3/c8/842fe598b551368ba5f2b7d046a103937c7edf77ebf8dc8ddde57af6aca3/blis-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "472dc5cf84fc034d7fb7b5493af4ad43ba190a0bbb0fa827aa5aeb71d816ce7a",
                "md5": "9d6cf3744d2effa43bded54ea3b75b88",
                "sha256": "dbc4655175e59b20e458be40c3794dfa723c1eac8115ff5fc49cfd240c8efe29"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d6cf3744d2effa43bded54ea3b75b88",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 7833077,
            "upload_time": "2022-08-04T13:37:24",
            "upload_time_iso_8601": "2022-08-04T13:37:24.095627Z",
            "url": "https://files.pythonhosted.org/packages/47/2d/c5cf84fc034d7fb7b5493af4ad43ba190a0bbb0fa827aa5aeb71d816ce7a/blis-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd021e91b0f463d0e6c98a6153e46ed0ebd2ec30ca63b77470a01440e57d764b",
                "md5": "901e6253977f8a8cefda77659fc10e28",
                "sha256": "44b92afe95801a370e3ce147aefb608ef0167b5e82b2f629aee723581adbdf44"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "901e6253977f8a8cefda77659fc10e28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 7433846,
            "upload_time": "2022-08-04T13:37:25",
            "upload_time_iso_8601": "2022-08-04T13:37:25.848876Z",
            "url": "https://files.pythonhosted.org/packages/cd/02/1e91b0f463d0e6c98a6153e46ed0ebd2ec30ca63b77470a01440e57d764b/blis-0.9.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c06b2ee2deaf173da8038b3745f3d95a6db18009a4bc74cd1968b4af07ab7080",
                "md5": "7cbb67f65c4a7cf9260fcdcb70be0d5a",
                "sha256": "4be4d983fc1501eefa67363a3c69e98a7fc29fcddc457b283850e34223f7070e"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cbb67f65c4a7cf9260fcdcb70be0d5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5303785,
            "upload_time": "2022-08-04T13:37:27",
            "upload_time_iso_8601": "2022-08-04T13:37:27.506191Z",
            "url": "https://files.pythonhosted.org/packages/c0/6b/2ee2deaf173da8038b3745f3d95a6db18009a4bc74cd1968b4af07ab7080/blis-0.9.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffdb013b909b21450d0c01d6bc49391fa2f42f711bba624547477d1254f7ecc1",
                "md5": "dd7344e54abbd0a9e60a8be227191e4d",
                "sha256": "efab5d43eb6ca57ebdb17f32ab7359c7380c274a6b2730b7a3596eeaa0314a7a"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd7344e54abbd0a9e60a8be227191e4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 892845,
            "upload_time": "2022-08-04T13:37:28",
            "upload_time_iso_8601": "2022-08-04T13:37:28.981732Z",
            "url": "https://files.pythonhosted.org/packages/ff/db/013b909b21450d0c01d6bc49391fa2f42f711bba624547477d1254f7ecc1/blis-0.9.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "741904de88448bbd81c797bece1bc64b508ce9bc87832a22c42ed2810eed5f15",
                "md5": "e4a78f1f4fcfb94d091890c419984f50",
                "sha256": "eb3004d70eeadc3959415a864dc6b577a735c4b9961266c596145ebae789544c"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e4a78f1f4fcfb94d091890c419984f50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3471062,
            "upload_time": "2022-08-04T13:37:30",
            "upload_time_iso_8601": "2022-08-04T13:37:30.691644Z",
            "url": "https://files.pythonhosted.org/packages/74/19/04de88448bbd81c797bece1bc64b508ce9bc87832a22c42ed2810eed5f15/blis-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ba26b58b478b877c70cb71d5cfa456a6c43a3bb281c2d63685eece9424e4301",
                "md5": "f32843a321192795f59b2c2e60d9dd6b",
                "sha256": "c56e816a81ab03c1c1ea61b7f7d0b7a030172ff0b176cf03561b8d6d58c44387"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f32843a321192795f59b2c2e60d9dd6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 7832901,
            "upload_time": "2022-08-04T13:37:32",
            "upload_time_iso_8601": "2022-08-04T13:37:32.388977Z",
            "url": "https://files.pythonhosted.org/packages/0b/a2/6b58b478b877c70cb71d5cfa456a6c43a3bb281c2d63685eece9424e4301/blis-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "890fa3aa7c2cb7e5521166b1b0c8533bfe2b4e0bff4d97c1f5cf3501ba2600e7",
                "md5": "e5887146fb8fe6401707b057c8241fd7",
                "sha256": "c4453bf5d2dde2d226c5ab2f0cf22d22fc04979d75e4542af0d0acf25b253f50"
            },
            "downloads": -1,
            "filename": "blis-0.9.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e5887146fb8fe6401707b057c8241fd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 7432055,
            "upload_time": "2022-08-04T13:37:34",
            "upload_time_iso_8601": "2022-08-04T13:37:34.102451Z",
            "url": "https://files.pythonhosted.org/packages/89/0f/a3aa7c2cb7e5521166b1b0c8533bfe2b4e0bff4d97c1f5cf3501ba2600e7/blis-0.9.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "741e18f5068e5c4f2e10248f65bc0f799e9017f70749fa3f5c9fdd30be179784",
                "md5": "e66cbf5f5ffdcee431c0cbfd7be08084",
                "sha256": "7ceac466801f9d97ecb34e10dded8c24cf5e0927ea7e834da1cc9d2ed3fc366f"
            },
            "downloads": -1,
            "filename": "blis-0.9.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e66cbf5f5ffdcee431c0cbfd7be08084",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3574436,
            "upload_time": "2022-08-04T13:37:35",
            "upload_time_iso_8601": "2022-08-04T13:37:35.661996Z",
            "url": "https://files.pythonhosted.org/packages/74/1e/18f5068e5c4f2e10248f65bc0f799e9017f70749fa3f5c9fdd30be179784/blis-0.9.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-08-04 13:37:35",
    "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": [
                [
                    ">=",
                    "1.15.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.19.0"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "cython",
            "specs": []
        },
        {
            "name": "hypothesis",
            "specs": [
                [
                    ">=",
                    "4.0.0"
                ],
                [
                    "<",
                    "7.0.0"
                ]
            ]
        }
    ],
    "lcname": "blis"
}
        
Elapsed time: 0.14511s