Skip to main content

Python bindings for the Fast Gauss-Legendre (FastGL) algorithm

Project description

FastGL computes Gauss-Legendre quadrature nodes and weights O(1000)x faster than scipy.special.roots_legendre. It does so by implementing an iteration-free algorithm developed in Bogaert (2014). This Python package is a thin wrapper around the C++ code from that paper. A classical iterative algorithm from Kendrick Smith is also implemented, which is around 20x faster than the SciPy implementation. Both are OpenMP parallelized.

  • Free software: BSD license

Usage

This module contains functions to compute the sample points and weights for Gauss-Legendre quadrature given the quadrature order.

>>> from fastgl import roots_legendre
>>> N = 100
>>> mu, w_mu = roots_legendre(N) # FastGL calculation
>>> mu, w_mu = roots_legendre_brute(N) # Classical Iterative calculation

Here, mu is a numpy array containing the cosine of the sample points (ranging from -1 to 1) and w_mu is a numpy array containing the corresponding quadrature weights.

Installing

Make sure your pip tool is up-to-date. To install fastgl, run:

$ pip install fastgl --user

This will install a pre-compiled binary suitable for your system (only Linux and Mac OS X with Python>=3.10 are supported).

If you require more control over your installation, e.g. using Intel compilers, please see the section below on compiling from source.

Compiling from source (advanced / development workflow)

The easiest way to install from source is to use the pip tool, with the --no-binary flag. This will download the source distribution and compile it for you. Don’t forget to make sure you have CC and FC set if you have any problems.

For all other cases, below are general instructions.

First, download the source distribution or git clone this repository. You can work from master or checkout one of the released version tags (see the Releases section on Github). Then change into the cloned/source directory.

Once downloaded, you can install using pip install . inside the project directory. We use the meson build system, which should be understood by pip (it will build in an isolated environment).

We suggest you then test the installation by running the unit tests. You can do this by running pytest.

To run an editable install, you will need to do so in a way that does not have build isolation (as the backend build system, meson and ninja, actually perform micro-builds on usage in this case):

$ pip install --upgrade pip meson ninja meson-python cython numpy pybind11
$ pip install  --no-build-isolation --editable .

Contributions

If you have write access to this repository, please:

  1. create a new branch

  2. push your changes to that branch

  3. merge or rebase to get in sync with master

  4. submit a pull request on github

If you do not have write access, create a fork of this repository and proceed as described above.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastgl-0.1.2.tar.gz (88.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fastgl-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastgl-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (243.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.2-pp311-pypy311_pp73-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.2-pp311-pypy311_pp73-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastgl-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (242.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastgl-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastgl-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastgl-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (243.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fastgl-0.1.2-cp313-cp313-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fastgl-0.1.2-cp313-cp313-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

fastgl-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastgl-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastgl-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastgl-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (243.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fastgl-0.1.2-cp312-cp312-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fastgl-0.1.2-cp312-cp312-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

fastgl-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastgl-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastgl-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastgl-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (243.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fastgl-0.1.2-cp311-cp311-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fastgl-0.1.2-cp311-cp311-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

fastgl-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastgl-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastgl-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastgl-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (242.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fastgl-0.1.2-cp310-cp310-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

fastgl-0.1.2-cp310-cp310-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

File details

Details for the file fastgl-0.1.2.tar.gz.

File metadata

  • Download URL: fastgl-0.1.2.tar.gz
  • Upload date:
  • Size: 88.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fastgl-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a45d71350cde428a6eaf27ef95cd292deffd90a84165f99c9927c4783fcbb02c
MD5 8568cf46662294281011af76c4b512ac
BLAKE2b-256 01520746c3941ef3cbc257b4d7b9657aec0920618501a5b9eff23f9d4a18d581

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19413165b60fa9bc5ed51234b4899f999ad28c23fc325cb7f3c14cbffa200027
MD5 91e56fcc0b821ecfdda9228646e8944d
BLAKE2b-256 3f38f9f2a5a6acc7e1bbf0c33e06606f57ce037b2ca81c2917fb207f350a8def

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d1a4d2a173cbe5995bbda5070aac5caa5c89f30de21a0057c11bcdac31fadb1
MD5 f5edff1b1c9710ce8b1d9788ae481519
BLAKE2b-256 bf825a506c175f170cd1032f39dad14db98535f3c2eb3c64c49b3022f0fc9428

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp311-pypy311_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 998dba934af5cdda7caf61798c8c441a5d5183814a8889f4bc0c53aa4a6502fd
MD5 92547d5474b4c6ddb04663af205ac976
BLAKE2b-256 f331e0c6b617a6cccf992399f264943b5c37cfa1aecac42e928b80e48c5718de

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp311-pypy311_pp73-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp311-pypy311_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4010d7f8a8b0fd8243e59d06e42fb16f8c8f13b0aefa9ccf26499427c1f39a9b
MD5 588aba3d46b58d4f9c0ade1eb2c7a920
BLAKE2b-256 8c720fa0666566544621031653c06cd2b0468d8f60e6d65c49df3c239b173261

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f55563b62758ed842a824c76d505a88b738ca5140698c6d73b12e10de740f1e
MD5 cb3c5dfec88b25f1ebf94b4bca79ab5e
BLAKE2b-256 d84c0930d14f9335203409ea919e0fabdf0d2ecd3c17e9aeab6e1680dc0dbb46

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aad1a1457352abe31d96b16c848582be3c83c89dad4abc9dbcaeacfeaf7b320e
MD5 2b75ca831c6ec01f3626e8a64bfeabb7
BLAKE2b-256 13ed99cf837beb36673846488ef6194ee1230c6c0453e63f378313eff30b0828

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f882cecb2368019ea14c649c505ab4d57597ddb479635be6f1c0ca3c7e92c51b
MD5 f60578c22cc2fa6d80b0d897df446619
BLAKE2b-256 f542bb330ecbf98c4a2088cea68ae1715266ef5448e1ce3434ffea8865bffa9e

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ad078d597f8838b91fcd0c70c892d0bd2fd0bfc8930e904c5c34c432c11d2af8
MD5 077211983c4e039b47d022f23099ec42
BLAKE2b-256 24295959cf6cb4545be0649a5400d4145fa48c44ccc4e12b41e438c89824591a

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a92ceba114b202907f82bb7d62610f822f6f929df7c168c57a1c143af7e8491d
MD5 9df553c927ba20d131d083a70e43902b
BLAKE2b-256 6d955efd9b61392ac697aa9cbf8752c4c4804315c916246c1f71062f62bf8ea2

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ed009568f538325ad82d0968d4c2d236b4b29b68ce5f9b90399e3c1af5ed5fac
MD5 15b0a2f5f6c92ca942567ff50e279c93
BLAKE2b-256 82430127b95aeea0a313645cdc3506a495e8f0dd2249e9481a4d1e48208a9050

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b47724a1f8e2953930f616aebd59582fd918a8461f151b9faa4b6774fcf57104
MD5 bf7b87052dde0e10fb29e1046bd12af1
BLAKE2b-256 77470a9993fc7c8971db45e4bb96b7c2157a1e1263a6a9bade03b0521011a0d3

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9efef6747b67985d97f5674c35267084dbae27d55f26261c81077acca6351c80
MD5 180e3fc781b9280de37ead2d0eaa5018
BLAKE2b-256 cc88b249cc8b673f5bee1bbb099751e179b2a92ad2fdc026a70c7e3cdddef807

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c9b725598d1ebd690b22c89fc45daadfd656102a4a1ec44fcf65aa2e4cf43d4c
MD5 3fbac5d54f2d2a6493491a8ebb6035a3
BLAKE2b-256 d7e6d6f79e58dc409a2975f70decea708c54ffdc3e776331e21e476f7a77883a

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3a7d6a0b67f9585fa6cbc40da312f79813d6746fd05eaff72d5b3290eaf0689b
MD5 fdd569939af869310a2fe67a9cde3e0e
BLAKE2b-256 6ae70a31a4068139f2e66550b532f369797af66b691fd0114d1c6ce56aabf23c

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd9ba77f2df67c0289cf18f7cf881bdec187429dc12db80d31b4e6c3244c32bd
MD5 d4654c2798fbe1fcaf134c6a928833d2
BLAKE2b-256 3f3e045ae295b1965435cd445cb704a3fab2707f954891a03f346f90ff2831a4

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10d8659999b3a5f7135ca835bc7a7b4f647987b06aece62d953564453fd93587
MD5 5b41ca57a92489ed34a957ac8b196ced
BLAKE2b-256 c8cd680634bf04aa410221e96f7cfff8fd3d5616cacdfecb957494307efdbc53

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee28bc038e0baceba129b95e7f431e11449560212d2ed9aa90ef05bca7e8969a
MD5 a8704dcdda6e338be2c6f7945203d314
BLAKE2b-256 67ba98f1de100d71465429d68cfd0a6f0e5e2c6ba6b60832faaf5f7c3bfc42ba

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 105b060d7814d8488d13914ccaf584f4792c5d61dc2784c4cc1b7f2444b3c865
MD5 887474ec2c4f8136acb2981766076c0b
BLAKE2b-256 eb285ead37e173c8bfd54d87e615662d77a4b841647b1c51dfe8b90ed7f7a43f

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c58da1535c5caf6dbd3cf77be7569fdd652ca8d586966145efdf5bfc010309de
MD5 e08db650344642875b446eaeaf7455d2
BLAKE2b-256 9c07d3ff11a52119222d8149a4113cebf253c179b5b73c1cb4f406e4552c5dbe

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f13d85011fce53af585a080bfe4aecc3f745b35cd44cde069125d93eeaa8c6d1
MD5 80840aabad4b6657b8bbab2b124b4b2f
BLAKE2b-256 4e60ce40bcaab67b2be6bd6d3b2bc1a883d0738369b8ba70713da40d65e710df

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0543095151b86d404474a79c6052a158c5d63ae492fb823d6d31fcd67d3fcb1f
MD5 19b6b3579b2be915c9482c80181a540f
BLAKE2b-256 35df08301039e55e2ee5d05f36bf984bf107010b07ef14d25b030110794a455f

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0026071c399b354b9f92c8fe150ef9ad43b0cfe60a0ecd7a38dbe7110434886
MD5 97943bfb54ee14f5d72a7f3e2c4a87b0
BLAKE2b-256 95af18049caed5fe139c5855d17da36b69cfece840eba95d66563bb417fecaa4

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6225fadd9961d0a512fe1de157eb68015ecad726b412c8a479bc5012a6347c54
MD5 c0978261a1c678ca17078802b1825b3d
BLAKE2b-256 79aed58c22218889c7119b9549bd662bfc3bb1063bf10676b6d42096c12739e6

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eadeda02d163c06881cde15cf325dd4cc125e15cc86f30bf54adc7c8553bf93f
MD5 6af1b241630e10ac20d5e8f6580ec74d
BLAKE2b-256 ddf0164960d3414914784d664c999950efcf56dc816d0574df68b6e2823f54ce

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dfecbfa3133eb0fc58d77a18f2ab6ad0d47e504e4cc783defc6dc499c62b42c6
MD5 af9fb0dda458da4a9afd9063ee9d28f0
BLAKE2b-256 61a287f1ce3437758e42e83bc891cf229ffbf413a897042094bac84cd6dc71c4

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9acdb26c96b17d629135c3e7a420e0954321e36fd01caa0d3aa7cd603ce18ef4
MD5 3b3bf1b9571adb2e44ad1640dd493a4f
BLAKE2b-256 86fbd70c40c913e380ce58e4c128785841d96ee678824343b68caec91d8d2ac1

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48bb24f874e4b01eb3312d1caee70d20b6843e0a422c1b785e9a190f3c84e5b0
MD5 0753074408c275b4f27cb12a5ca92193
BLAKE2b-256 9f04baa2de45e375871d0d48822f126bd092b5c9c0d22ba7e56ef8550f6fe629

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32ca726fc4b5c71e1d035c367c02bff9f8ed2ee61886e91f5910bace73498db4
MD5 e7ffbbaec144dcc1ec5ea2d6b06e2143
BLAKE2b-256 e6afe6a315192be448a2574be2becf1800bd0f21dafe7d9c3a7f64cc065562c8

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18a1700c48539fe17dd82b1b1102caf17b128dcd5eab572099a0696f6b819520
MD5 595f791d96e43f3e2ebf954db2da9d51
BLAKE2b-256 bb2154f9d0dae7ccf5de804e120df434a9fb8645dea03ec17fdf57391dc8e45c

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a847536316f90af0e606d4b8fc927133c9197710124603e0c1e14a2bbc2fb949
MD5 143df2324d6dd6c19bd05509e6a131f4
BLAKE2b-256 a52ccb993960aebc44a643876766576961de4b7ec10139f6bf0ec0b3075c1856

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1fe42c681d7c5368ff684e0da11c2048b7e5c469fdfb0915b4d1f26e78e19a69
MD5 f970d731a4d286d0304c931bffe8ae2c
BLAKE2b-256 a7a6bdb17a68227ddcd4581c6894b5a74bbd7bec95512695d22f32f1949bb093

See more details on using hashes here.

File details

Details for the file fastgl-0.1.2-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.2-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9c2076bfa7023469cca0a9681e762fc3e52087ec5a8656730075ebce989cd0f1
MD5 8f6ca5137afac37f2f0d1463344e574b
BLAKE2b-256 10fb53257c2b9a30971f58604a97a6d6d8654296f0fca29d28ac5a12e0b1d930

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page