(self, shape, dtype)
| 159 | return broadcast_to(self, shape, broadcast_dims) |
| 160 | |
| 161 | def bitcast(self, shape, dtype): |
| 162 | from .elemwise import bitcast |
| 163 | |
| 164 | return bitcast(self, shape, dtype) |
| 165 | |
| 166 | def astype(self, dtype): |
| 167 | from .elemwise import typecvt |
no test coverage detected