larq-compute-engine


Namelarq-compute-engine JSON
Version 0.13.0 PyPI version JSON
download
home_pagehttps://larq.dev/
SummaryHighly optimized inference engine for binarized neural networks.
upload_time2023-08-10 10:30:37
maintainer
docs_urlNone
authorPlumerai
requires_python>=3.9
licenseApache 2.0
keywords binarized neural networks
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Larq Compute Engine <img src="https://user-images.githubusercontent.com/13285808/74535800-84017780-4f2e-11ea-9169-52f5ac83d685.png" alt="larq logo" height="80px" align="right" />

[![Tests](https://github.com/larq/compute-engine/workflows/Tests/badge.svg)](https://github.com/larq/compute-engine/actions?workflow=Tests) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/larq-compute-engine.svg)](https://pypi.org/project/larq-compute-engine/) [![PyPI](https://img.shields.io/pypi/v/larq-compute-engine.svg)](https://pypi.org/project/larq-compute-engine/) [![PyPI - License](https://img.shields.io/pypi/l/larq-compute-engine.svg)](https://github.com/larq/compute-engine/blob/main/LICENSE)

Larq Compute Engine (LCE) is a highly optimized inference engine for deploying
extremely quantized neural networks, such as
Binarized Neural Networks (BNNs). It currently supports various mobile platforms
and has been benchmarked on a Pixel 1 phone and a Raspberry Pi.
LCE provides a collection of hand-optimized [TensorFlow Lite](https://www.tensorflow.org/lite)
custom operators for supported instruction sets, developed in inline assembly or in C++
using compiler intrinsics. LCE leverages optimization techniques
such as **tiling** to maximize the number of cache hits, **vectorization** to maximize
the computational throughput, and **multi-threading parallelization** to take
advantage of multi-core modern desktop and mobile CPUs.

*Larq Compute Engine is part of a family of libraries for BNN development; you can also check out [Larq](https://github.com/larq/larq) for building and training BNNs and [Larq Zoo](https://github.com/larq/zoo) for pre-trained models.*

## Key Features

- **Effortless end-to-end integration** from training to deployment:

    - Tight integration of LCE with [Larq](https://larq.dev) and
      TensorFlow provides a smooth end-to-end training and deployment experience.

    - A collection of Larq pre-trained BNN models for common machine learning tasks
      is available in [Larq Zoo](https://docs.larq.dev/zoo/)
      and can be used out-of-the-box with LCE.

    - LCE provides a custom [MLIR-based model converter](https://docs.larq.dev/compute-engine/api/converter) which
      is fully compatible with TensorFlow Lite and performs additional
      network level optimizations for Larq models.

- **Lightning fast deployment** on a variety of mobile platforms:

    - LCE enables high performance, on-device machine learning inference by
      providing hand-optimized kernels and network level optimizations for BNN models.

    - LCE currently supports 64-bit ARM-based mobile platforms such as Android phones
      and Raspberry Pi boards.

    - Thread parallelism support in LCE is essential for modern mobile devices with
      multi-core CPUs.

## Performance

The table below presents **single-threaded** performance of Larq Compute Engine on
different versions of a novel BNN model called QuickNet (trained on ImageNet dataset, released on [Larq Zoo](https://docs.larq.dev/zoo/))
on a Raspberry Pi 4 Model B at 1.5GHz ([BCM2711](https://www.raspberrypi.com/documentation/computers/processors.html#bcm2711)) board, a [Pixel 1 Android phone (2016)](https://support.google.com/pixelphone/answer/7158570?hl=en-GB), and a [Mac Mini with M1 ARM CPU](https://www.apple.com/uk/mac-mini/):

| Model                                                              | Top-1 Accuracy | RPi 4B 1.5GHz, 1 thread (ms) | Pixel 1, 1 thread (ms) | Mac Mini M1, 1 thread (ms) |
|--------------------------------------------------------------------|----------------|------------------------------|------------------------|----------------------------|
| [QuickNetSmall](https://docs.larq.dev/zoo/api/sota/#quicknetsmall) | 59.4%          | 27.7                         | 16.8                   | 4.0                        |
| [QuickNet](https://docs.larq.dev/zoo/api/sota/#quicknet)           | 63.3%          | 45.0                         | 25.5                   | 5.8                        |
| [QuickNetLarge](https://docs.larq.dev/zoo/api/sota/#quicknetlarge) | 66.9%          | 77.0                         | 44.2                   | 9.9                        |

For reference, [dabnn](https://github.com/JDAI-CV/dabnn) (the other main BNN library) reports an inference time of 61.3 ms for [Bi-RealNet](https://docs.larq.dev/zoo/api/literature/#birealnet) (56.4% accuracy) on the Pixel 1 phone,
while LCE achieves an inference time of 41.6 ms for Bi-RealNet on the same device.
They furthermore present a modified version, BiRealNet-Stem, which achieves the same accuracy of 56.4% in 43.2 ms.

The following table presents **multi-threaded** performance of Larq Compute Engine on
a Pixel 1 phone and a Raspberry Pi 4 Model B at 1.5GHz ([BCM2711](https://www.raspberrypi.com/documentation/computers/processors.html#bcm2711))
board:

| Model                                                              | Top-1 Accuracy | RPi 4B 1.5GHz, 4 threads (ms) | Pixel 1, 4 threads (ms) | Mac Mini M1, 4 threads (ms) |
|--------------------------------------------------------------------|----------------|-------------------------------|-------------------------|-----------------------------|
| [QuickNetSmall](https://docs.larq.dev/zoo/api/sota/#quicknetsmall) | 59.4%          | 12.1                          | 8.9                     | 1.8                         |
| [QuickNet](https://docs.larq.dev/zoo/api/sota/#quicknet)           | 63.3%          | 20.8                          | 12.6                    | 2.5                         |
| [QuickNetLarge](https://docs.larq.dev/zoo/api/sota/#quicknetlarge) | 66.9%          | 31.7                          | 22.8                    | 3.9                         |

Benchmarked on 2021-06-11 (Pixel 1), 2021-06-13 (Mac Mini M1), and 2022-04-20 (RPi 4B) with LCE custom
[TFLite Model Benchmark Tool](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/tools/benchmark)
(see [here](https://github.com/larq/compute-engine/tree/main/larq_compute_engine/tflite/benchmark))
with XNNPack enabled
and BNN models with randomized inputs.

## Getting started

Follow these steps to deploy a BNN with LCE:

1. **Pick a Larq model**

    You can use [Larq](https://larq.dev) to build and train your own model or pick a pre-trained model from [Larq Zoo](https://docs.larq.dev/zoo/).

2. **Convert the Larq model**

    LCE is built on top of TensorFlow Lite and uses the TensorFlow Lite [FlatBuffer format](https://google.github.io/flatbuffers/) to convert and serialize Larq models for inference. We provide an [LCE Converter](https://docs.larq.dev/compute-engine/api/converter) with additional optimization passes to increase the speed of execution of Larq models on supported target platforms.

3. **Build LCE**

    The LCE documentation provides the build instructions for [Android](https://docs.larq.dev/compute-engine/quickstart_android) and [64-bit ARM-based boards](https://docs.larq.dev/compute-engine/build/arm) such as Raspberry Pi. Please follow the provided instructions to create a native LCE build or cross-compile for one of the supported targets.

4. **Run inference**

    LCE uses the [TensorFlow Lite Interpreter](https://www.tensorflow.org/lite/guide/inference) to perform an inference. In addition to the already available built-in TensorFlow Lite operators, optimized LCE operators are registered to the interpreter to execute the Larq specific subgraphs of the model. An example to create and build an LCE compatible TensorFlow Lite interpreter for your own applications is provided [here](https://docs.larq.dev/compute-engine/inference).

## Next steps

- Explore [Larq pre-trained models](https://docs.larq.dev/zoo/).
- Learn how to [build](https://docs.larq.dev/larq/guides/bnn-architecture/) and
  [train](https://docs.larq.dev/larq/guides/bnn-optimization/) BNNs for your own
  application with Larq.
- If you're a mobile developer, visit [Android quickstart](https://docs.larq.dev/compute-engine/quickstart_android).
- See our build instructions for Raspberry Pi and 64-bit ARM-based boards [here](https://docs.larq.dev/compute-engine/build/arm).
- Try our [example programs](https://github.com/larq/compute-engine/tree/main/examples).

## About

Larq Compute Engine is being developed by a team of deep learning researchers and engineers at Plumerai to help accelerate both our own research and the general adoption of Binarized Neural Networks.

            

Raw data

            {
    "_id": null,
    "home_page": "https://larq.dev/",
    "name": "larq-compute-engine",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "binarized neural networks",
    "author": "Plumerai",
    "author_email": "opensource@plumerai.com",
    "download_url": "",
    "platform": null,
    "description": "# Larq Compute Engine <img src=\"https://user-images.githubusercontent.com/13285808/74535800-84017780-4f2e-11ea-9169-52f5ac83d685.png\" alt=\"larq logo\" height=\"80px\" align=\"right\" />\n\n[![Tests](https://github.com/larq/compute-engine/workflows/Tests/badge.svg)](https://github.com/larq/compute-engine/actions?workflow=Tests) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/larq-compute-engine.svg)](https://pypi.org/project/larq-compute-engine/) [![PyPI](https://img.shields.io/pypi/v/larq-compute-engine.svg)](https://pypi.org/project/larq-compute-engine/) [![PyPI - License](https://img.shields.io/pypi/l/larq-compute-engine.svg)](https://github.com/larq/compute-engine/blob/main/LICENSE)\n\nLarq Compute Engine (LCE) is a highly optimized inference engine for deploying\nextremely quantized neural networks, such as\nBinarized Neural Networks (BNNs). It currently supports various mobile platforms\nand has been benchmarked on a Pixel 1 phone and a Raspberry Pi.\nLCE provides a collection of hand-optimized [TensorFlow Lite](https://www.tensorflow.org/lite)\ncustom operators for supported instruction sets, developed in inline assembly or in C++\nusing compiler intrinsics. LCE leverages optimization techniques\nsuch as **tiling** to maximize the number of cache hits, **vectorization** to maximize\nthe computational throughput, and **multi-threading parallelization** to take\nadvantage of multi-core modern desktop and mobile CPUs.\n\n*Larq Compute Engine is part of a family of libraries for BNN development; you can also check out [Larq](https://github.com/larq/larq) for building and training BNNs and [Larq Zoo](https://github.com/larq/zoo) for pre-trained models.*\n\n## Key Features\n\n- **Effortless end-to-end integration** from training to deployment:\n\n    - Tight integration of LCE with [Larq](https://larq.dev) and\n      TensorFlow provides a smooth end-to-end training and deployment experience.\n\n    - A collection of Larq pre-trained BNN models for common machine learning tasks\n      is available in [Larq Zoo](https://docs.larq.dev/zoo/)\n      and can be used out-of-the-box with LCE.\n\n    - LCE provides a custom [MLIR-based model converter](https://docs.larq.dev/compute-engine/api/converter) which\n      is fully compatible with TensorFlow Lite and performs additional\n      network level optimizations for Larq models.\n\n- **Lightning fast deployment** on a variety of mobile platforms:\n\n    - LCE enables high performance, on-device machine learning inference by\n      providing hand-optimized kernels and network level optimizations for BNN models.\n\n    - LCE currently supports 64-bit ARM-based mobile platforms such as Android phones\n      and Raspberry Pi boards.\n\n    - Thread parallelism support in LCE is essential for modern mobile devices with\n      multi-core CPUs.\n\n## Performance\n\nThe table below presents **single-threaded** performance of Larq Compute Engine on\ndifferent versions of a novel BNN model called QuickNet (trained on ImageNet dataset, released on [Larq Zoo](https://docs.larq.dev/zoo/))\non a Raspberry Pi 4 Model B at 1.5GHz ([BCM2711](https://www.raspberrypi.com/documentation/computers/processors.html#bcm2711)) board, a [Pixel 1 Android phone (2016)](https://support.google.com/pixelphone/answer/7158570?hl=en-GB), and a [Mac Mini with M1 ARM CPU](https://www.apple.com/uk/mac-mini/):\n\n| Model                                                              | Top-1 Accuracy | RPi 4B 1.5GHz, 1 thread (ms) | Pixel 1, 1 thread (ms) | Mac Mini M1, 1 thread (ms) |\n|--------------------------------------------------------------------|----------------|------------------------------|------------------------|----------------------------|\n| [QuickNetSmall](https://docs.larq.dev/zoo/api/sota/#quicknetsmall) | 59.4%          | 27.7                         | 16.8                   | 4.0                        |\n| [QuickNet](https://docs.larq.dev/zoo/api/sota/#quicknet)           | 63.3%          | 45.0                         | 25.5                   | 5.8                        |\n| [QuickNetLarge](https://docs.larq.dev/zoo/api/sota/#quicknetlarge) | 66.9%          | 77.0                         | 44.2                   | 9.9                        |\n\nFor reference, [dabnn](https://github.com/JDAI-CV/dabnn) (the other main BNN library) reports an inference time of 61.3 ms for [Bi-RealNet](https://docs.larq.dev/zoo/api/literature/#birealnet) (56.4% accuracy) on the Pixel 1 phone,\nwhile LCE achieves an inference time of 41.6 ms for Bi-RealNet on the same device.\nThey furthermore present a modified version, BiRealNet-Stem, which achieves the same accuracy of 56.4% in 43.2 ms.\n\nThe following table presents **multi-threaded** performance of Larq Compute Engine on\na Pixel 1 phone and a Raspberry Pi 4 Model B at 1.5GHz ([BCM2711](https://www.raspberrypi.com/documentation/computers/processors.html#bcm2711))\nboard:\n\n| Model                                                              | Top-1 Accuracy | RPi 4B 1.5GHz, 4 threads (ms) | Pixel 1, 4 threads (ms) | Mac Mini M1, 4 threads (ms) |\n|--------------------------------------------------------------------|----------------|-------------------------------|-------------------------|-----------------------------|\n| [QuickNetSmall](https://docs.larq.dev/zoo/api/sota/#quicknetsmall) | 59.4%          | 12.1                          | 8.9                     | 1.8                         |\n| [QuickNet](https://docs.larq.dev/zoo/api/sota/#quicknet)           | 63.3%          | 20.8                          | 12.6                    | 2.5                         |\n| [QuickNetLarge](https://docs.larq.dev/zoo/api/sota/#quicknetlarge) | 66.9%          | 31.7                          | 22.8                    | 3.9                         |\n\nBenchmarked on 2021-06-11 (Pixel 1), 2021-06-13 (Mac Mini M1), and 2022-04-20 (RPi 4B) with LCE custom\n[TFLite Model Benchmark Tool](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/tools/benchmark)\n(see [here](https://github.com/larq/compute-engine/tree/main/larq_compute_engine/tflite/benchmark))\nwith XNNPack enabled\nand BNN models with randomized inputs.\n\n## Getting started\n\nFollow these steps to deploy a BNN with LCE:\n\n1. **Pick a Larq model**\n\n    You can use [Larq](https://larq.dev) to build and train your own model or pick a pre-trained model from [Larq Zoo](https://docs.larq.dev/zoo/).\n\n2. **Convert the Larq model**\n\n    LCE is built on top of TensorFlow Lite and uses the TensorFlow Lite [FlatBuffer format](https://google.github.io/flatbuffers/) to convert and serialize Larq models for inference. We provide an [LCE Converter](https://docs.larq.dev/compute-engine/api/converter) with additional optimization passes to increase the speed of execution of Larq models on supported target platforms.\n\n3. **Build LCE**\n\n    The LCE documentation provides the build instructions for [Android](https://docs.larq.dev/compute-engine/quickstart_android) and [64-bit ARM-based boards](https://docs.larq.dev/compute-engine/build/arm) such as Raspberry Pi. Please follow the provided instructions to create a native LCE build or cross-compile for one of the supported targets.\n\n4. **Run inference**\n\n    LCE uses the [TensorFlow Lite Interpreter](https://www.tensorflow.org/lite/guide/inference) to perform an inference. In addition to the already available built-in TensorFlow Lite operators, optimized LCE operators are registered to the interpreter to execute the Larq specific subgraphs of the model. An example to create and build an LCE compatible TensorFlow Lite interpreter for your own applications is provided [here](https://docs.larq.dev/compute-engine/inference).\n\n## Next steps\n\n- Explore [Larq pre-trained models](https://docs.larq.dev/zoo/).\n- Learn how to [build](https://docs.larq.dev/larq/guides/bnn-architecture/) and\n  [train](https://docs.larq.dev/larq/guides/bnn-optimization/) BNNs for your own\n  application with Larq.\n- If you're a mobile developer, visit [Android quickstart](https://docs.larq.dev/compute-engine/quickstart_android).\n- See our build instructions for Raspberry Pi and 64-bit ARM-based boards [here](https://docs.larq.dev/compute-engine/build/arm).\n- Try our [example programs](https://github.com/larq/compute-engine/tree/main/examples).\n\n## About\n\nLarq Compute Engine is being developed by a team of deep learning researchers and engineers at Plumerai to help accelerate both our own research and the general adoption of Binarized Neural Networks.\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Highly optimized inference engine for binarized neural networks.",
    "version": "0.13.0",
    "project_urls": {
        "Homepage": "https://larq.dev/"
    },
    "split_keywords": [
        "binarized",
        "neural",
        "networks"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7aa9c173efaad1fc2f33a353fb879e421d9126684e26ede2cd8d5b8bf0dd711",
                "md5": "c03d968ea55fc35c9307a71ebd2fde6f",
                "sha256": "35f173cc9e787d308b25720c60ae40065e7677f727a76b632588ee30cdbe7994"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c03d968ea55fc35c9307a71ebd2fde6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 59725906,
            "upload_time": "2023-08-10T10:30:37",
            "upload_time_iso_8601": "2023-08-10T10:30:37.825487Z",
            "url": "https://files.pythonhosted.org/packages/e7/aa/9c173efaad1fc2f33a353fb879e421d9126684e26ede2cd8d5b8bf0dd711/larq_compute_engine-0.13.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc79f8a35a8be40a447384258e6cfbcfaba2139e573e12e918f2baf275220bbb",
                "md5": "7015fb7840202976b3b28e8b087ce8e9",
                "sha256": "9cb8c851a321a4057fe5b54273c14393cd1d17fe4fcb88f6a6645f7c5c2ed9cf"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7015fb7840202976b3b28e8b087ce8e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 49808018,
            "upload_time": "2023-08-10T10:30:42",
            "upload_time_iso_8601": "2023-08-10T10:30:42.847456Z",
            "url": "https://files.pythonhosted.org/packages/cc/79/f8a35a8be40a447384258e6cfbcfaba2139e573e12e918f2baf275220bbb/larq_compute_engine-0.13.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0132697490c89bb6ce7c6d9938ddebfcca559d991bc5767ec56003133a6ceeb1",
                "md5": "bc36c7ece9a608632818857708cdf780",
                "sha256": "aa783c35cebc6450fbb4ab35772efdc67ecc04e63bde870cfaa7070b04aa5ae4"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc36c7ece9a608632818857708cdf780",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 61679961,
            "upload_time": "2023-08-10T10:30:47",
            "upload_time_iso_8601": "2023-08-10T10:30:47.135506Z",
            "url": "https://files.pythonhosted.org/packages/01/32/697490c89bb6ce7c6d9938ddebfcca559d991bc5767ec56003133a6ceeb1/larq_compute_engine-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8a4b6d36e7fd8752007f002b0d09981335d3ca90f4f97e9eed7b2697fe34224",
                "md5": "b8217ca3752c86be8e3ab371beb5b6d2",
                "sha256": "515401abe6e31adc2915a0499da280d8d9e7442302cbfc35e1ea18f60e683383"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b8217ca3752c86be8e3ab371beb5b6d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 46693066,
            "upload_time": "2023-08-10T10:30:51",
            "upload_time_iso_8601": "2023-08-10T10:30:51.852591Z",
            "url": "https://files.pythonhosted.org/packages/b8/a4/b6d36e7fd8752007f002b0d09981335d3ca90f4f97e9eed7b2697fe34224/larq_compute_engine-0.13.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e428462a9f501488be44e396dc7fee7f24a9c5fa9b7546fda31cfd16221dde4",
                "md5": "ef4f54c715550bfcd0e8547eaa236688",
                "sha256": "816d4af107c579c92a54f26b73127bb3d3d3df1c3953b7769d7030ab6d7ff84a"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef4f54c715550bfcd0e8547eaa236688",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 59725870,
            "upload_time": "2023-08-10T10:30:57",
            "upload_time_iso_8601": "2023-08-10T10:30:57.387690Z",
            "url": "https://files.pythonhosted.org/packages/4e/42/8462a9f501488be44e396dc7fee7f24a9c5fa9b7546fda31cfd16221dde4/larq_compute_engine-0.13.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e9a7f32cf973f77931d2141a3c589a0d4dfd6201f7911aad5d91d9c47a5c347",
                "md5": "bb7366faa96a8a249b3bdb6273db2903",
                "sha256": "644aed4230fc764adf5a17031b03c88e64d18b8c9c803758324d1bea7c00962c"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bb7366faa96a8a249b3bdb6273db2903",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 49807437,
            "upload_time": "2023-08-10T10:31:01",
            "upload_time_iso_8601": "2023-08-10T10:31:01.610636Z",
            "url": "https://files.pythonhosted.org/packages/3e/9a/7f32cf973f77931d2141a3c589a0d4dfd6201f7911aad5d91d9c47a5c347/larq_compute_engine-0.13.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef5631edeb892dd5af6a0caf936152375dbdb06b807b0df911159f705883e04f",
                "md5": "7710ffda9c8c6b76ed7d19cf6422343d",
                "sha256": "2b2cbe5c9d7eba2674dc31f1d1f8e73c3267018c127b331a77be37c78716f6d2"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7710ffda9c8c6b76ed7d19cf6422343d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 61679805,
            "upload_time": "2023-08-10T10:31:05",
            "upload_time_iso_8601": "2023-08-10T10:31:05.964243Z",
            "url": "https://files.pythonhosted.org/packages/ef/56/31edeb892dd5af6a0caf936152375dbdb06b807b0df911159f705883e04f/larq_compute_engine-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2df1263368a13957acd66c73e458d83daaaf87eb1a8267ac5e6bd7da639db97b",
                "md5": "0968e53878392eaef850c6ea3212d3c4",
                "sha256": "4719439a65029c629a3a0d5d10003d7bee66dd6597f595ec9b7bf8256e61f8c7"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0968e53878392eaef850c6ea3212d3c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 46693869,
            "upload_time": "2023-08-10T10:31:10",
            "upload_time_iso_8601": "2023-08-10T10:31:10.191535Z",
            "url": "https://files.pythonhosted.org/packages/2d/f1/263368a13957acd66c73e458d83daaaf87eb1a8267ac5e6bd7da639db97b/larq_compute_engine-0.13.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de343d28d600944175b260ee8bd3196ce7f4d17fd0b96fb42fac6dfd1ba3b0a3",
                "md5": "cd3e021bb3c2927397630ee217e4d9cd",
                "sha256": "841bd994b11a1340b1c12a65bc5d6dba0ad1364b2ee8315b98426cc7a745e1ba"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd3e021bb3c2927397630ee217e4d9cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 59726926,
            "upload_time": "2023-08-10T10:31:14",
            "upload_time_iso_8601": "2023-08-10T10:31:14.406032Z",
            "url": "https://files.pythonhosted.org/packages/de/34/3d28d600944175b260ee8bd3196ce7f4d17fd0b96fb42fac6dfd1ba3b0a3/larq_compute_engine-0.13.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d062cf167ebaffff3dbbac665e8bef996a8b70c15b55f8289837808d3fe27482",
                "md5": "780e984b57a15f32eb4a4c9586461dc2",
                "sha256": "3b7c6dee14739986c9e6078155949b0fdc682595c823129e3ffa31e5be068de2"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "780e984b57a15f32eb4a4c9586461dc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 49808644,
            "upload_time": "2023-08-10T10:31:18",
            "upload_time_iso_8601": "2023-08-10T10:31:18.243468Z",
            "url": "https://files.pythonhosted.org/packages/d0/62/cf167ebaffff3dbbac665e8bef996a8b70c15b55f8289837808d3fe27482/larq_compute_engine-0.13.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f49975cd330beb2a5533a3eaa51c26f90a17f99a491cc7f65cd35f798734ffa6",
                "md5": "46d076ee2bab04e8e42d24ca8e2a0d9c",
                "sha256": "0769f64e37c6364405cb683c18231257e37217518fd6c9dee06bd891e52b2942"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46d076ee2bab04e8e42d24ca8e2a0d9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 61679029,
            "upload_time": "2023-08-10T10:31:22",
            "upload_time_iso_8601": "2023-08-10T10:31:22.747973Z",
            "url": "https://files.pythonhosted.org/packages/f4/99/75cd330beb2a5533a3eaa51c26f90a17f99a491cc7f65cd35f798734ffa6/larq_compute_engine-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5686236e109df0ed83c06cd3ced8215a65d2a94dd83a1b53752d0c78fb48083",
                "md5": "c749647efb04003b507ac3b56a640a9d",
                "sha256": "985320718aa7d2b58dbb8b77897b73bb2563b6f399d8fd3c315052bc3486b874"
            },
            "downloads": -1,
            "filename": "larq_compute_engine-0.13.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c749647efb04003b507ac3b56a640a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 46693564,
            "upload_time": "2023-08-10T10:31:26",
            "upload_time_iso_8601": "2023-08-10T10:31:26.483740Z",
            "url": "https://files.pythonhosted.org/packages/e5/68/6236e109df0ed83c06cd3ced8215a65d2a94dd83a1b53752d0c78fb48083/larq_compute_engine-0.13.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-10 10:30:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "larq-compute-engine"
}
        
Elapsed time: 0.10968s