(self, a)
| 2344 | return (randn(n, m)).astype(np.float32) |
| 2345 | |
| 2346 | def _neg_byteorder(self, a): |
| 2347 | a = np.asarray(a) |
| 2348 | if sys.byteorder == 'little': |
| 2349 | a = a.astype(a.dtype.newbyteorder('>')) |
| 2350 | else: |
| 2351 | a = a.astype(a.dtype.newbyteorder('<')) |
| 2352 | return a |
| 2353 | |
| 2354 | def _generate_non_native_data(self, n, m): |
| 2355 | data = randn(n, m) |
no test coverage detected