https://github.com/GPflow/GPflow
Revision d025f9603419c338606e671258833922fa75e662 authored by gustavocmv on 24 August 2020, 18:54:38 UTC, committed by GitHub on 24 August 2020, 18:54:38 UTC
* using the first dimension to hold the quadrature summation

* adapting ndiagquad wrapper

* Changed bf for bX in docstrings

Co-authored-by: Gustavo Carvalho <gustavo.carvalho@delfosim.com>
Co-authored-by: st-- <st--@users.noreply.github.com>
Co-authored-by: Vincent Dutordoir <dutordoirv@gmail.com>
1 parent 6894af5
Raw File
Tip revision: d025f9603419c338606e671258833922fa75e662 authored by gustavocmv on 24 August 2020, 18:54:38 UTC
Change shape of quadrature tensors for better broadcasting (#1542)
Tip revision: d025f96
.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Emacs backups
*~

# Pycharm IDE directory
.idea

# IPython Notebooks
.ipynb_checkpoints
*.ipynb

# VSCode
.vscode

# OSX
.DS_Store

# mypy artifacts
.mypy_cache
back to top