From f912e909150f1e608c96af03d40d8cd4d8177b80 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 21 Jun 2019 14:03:49 +0200 Subject: [PATCH] [py] add helper to check if we are on a 32bit system --- python/tests/utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/python/tests/utils.py b/python/tests/utils.py index 4b414883..76064042 100644 --- a/python/tests/utils.py +++ b/python/tests/utils.py @@ -3,11 +3,15 @@ import os import re import glob +import struct import numpy as np from tempfile import mkstemp DEFAULT_SOUND = '22050Hz_5s_brownnoise.wav' +def is32bit(): + return struct.calcsize("P") * 8 == 32 + def array_from_text_file(filename, dtype = 'float'): realpathname = os.path.join(os.path.dirname(__file__), filename) return np.loadtxt(realpathname, dtype = dtype) -- 2.11.0