(self, a)
| 1855 | return (randn(n, m)).astype(np.float32) |
| 1856 | |
| 1857 | def _neg_byteorder(self, a): |
| 1858 | a = np.asarray(a) |
| 1859 | if sys.byteorder == 'little': |
| 1860 | a = a.astype(a.dtype.newbyteorder('>')) |
| 1861 | else: |
| 1862 | a = a.astype(a.dtype.newbyteorder('<')) |
| 1863 | return a |
| 1864 | |
| 1865 | def _generate_non_native_data(self, n, m): |
| 1866 | data = randn(n, m) |
no test coverage detected