Skip to content
Snippets Groups Projects
Commit 3e2f5ff6 authored by Chichi Lalescu's avatar Chichi Lalescu
Browse files

Merge branch 'endianness' of github.com:idies/MPIArrayTools into endianness

parents 58066812 9f54cb75
No related branches found
No related tags found
No related merge requests found
#! /usr/bin/env python3
import numpy as np
data = np.memmap(
'data_native',
mode = 'r',
dtype = np.float32)
print(data)
data = np.memmap(
'data_internal',
mode = 'r',
dtype = np.float32)
print(data)
data = np.memmap(
'data_external32',
mode = 'r',
dtype = '>f4')
print(data)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment