https://github.com/google/jax
Raw File
Tip revision: d91fe4caec6be197011fdd0a22cca5ba26d753a6 authored by Lena Martens on 25 January 2022, 17:23:30 UTC
Strip named_shape and weak_type from aval when donating buffers.
Tip revision: d91fe4c
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

build:
  os: "ubuntu-20.04"
  tools:
    python: "3.9"

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py
  fail_on_warning: true

# Optionally build your docs in additional formats such as PDF and ePub
formats:
  - htmlzip

# Optionally set the version of Python and requirements required to build your docs
python:
  install:
    - requirements: docs/requirements.txt
back to top