r"""dots function for multiple matrix multiply
(*args)
| 493 | |
| 494 | |
| 495 | def dots(*args): |
| 496 | r"""dots function for multiple matrix multiply""" |
| 497 | nx = get_backend(*args) |
| 498 | return reduce(nx.dot, args) |
| 499 | |
| 500 | |
| 501 | def is_all_finite(*args): |
no test coverage detected