(buffers, device, backend=None)
| 396 | |
| 397 | @staticmethod |
| 398 | def make_tuple(buffers, device, backend=None): |
| 399 | backend = backend or get_local_backend() |
| 400 | return backend.make_tuple(buffers, device) |
| 401 | |
| 402 | # Buffer is not an instantiable type and exists only for its static methods. |
| 403 | # The underlying buffer objects are C++ object with the following |