cornellius-gp / linear_operator

A LinearOperator implementation to wrap the numerical nuts and bolts of GPyTorch
MIT License
95 stars 28 forks source link

Fix type of KroneckerProductLinearOperator.linear_ops (in some cases) #66

Closed Balandat closed 1 year ago

Balandat commented 1 year ago

https://github.com/cornellius-gp/linear_operator/pull/62 introduced an inconsistency of the linear_ops property of KroneckerProductLinearOperator (by making it a list rather than a tuple in some cases). This broke some downstream usage of this that relied on this being a tuple.

Balandat commented 1 year ago

(could probably have been avoided by better unit test coverage...)