https://github.com/GPflow/GPflow
Revision baa50bb0e365e9e5e40d5792b28e75d11c793235 authored by st-- on 11 July 2019, 13:14:25 UTC, committed by GitHub on 11 July 2019, 13:14:25 UTC
* clean up test_broadcasting

* move _broadcasting_elementwise_op into misc.py

* add remaining kernels to test_broadcasting

* add documentation of broadcasting behaviour to kernels module

* add note to ArcCosine docstring that broadcasting has not yet been implemented
1 parent 378d9e8
Raw File
Tip revision: baa50bb0e365e9e5e40d5792b28e75d11c793235 authored by st-- on 11 July 2019, 13:14:25 UTC
Clean up kernel broadcasting tests & documentation (#1000)
Tip revision: baa50bb
.coveragerc
[report]
omit = *tests*, setup.py
exclude_lines =
    pragma: no cover
    def __repr__
    def __str__
    def _repr_html_
    def _html_table_rows
    if self.debug:
    if settings.DEBUG
    raise AssertionError
    raise NotImplementedError
    if __name__ == .__main__.:
    print
back to top