machine info: Linux bluehive 3.10.0-1160.31.1.el7.x86_64 #1 SMP Wed May 26 20:18:08 UTC 2021 x86_64
CHPL_HOME: /scratch/ljenkin4/chapel-1.25.0 *
script location: /gpfs/fs2/scratch/ljenkin4/chapel-1.25.0/util/chplenv
CHPL_TARGET_PLATFORM: linux64
CHPL_TARGET_COMPILER: llvm
CHPL_TARGET_ARCH: x86_64
CHPL_TARGET_CPU: ivybridge *
CHPL_LOCALE_MODEL: flat
CHPL_COMM: gasnet *
CHPL_COMM_SUBSTRATE: ibv *
CHPL_GASNET_SEGMENT: large *
CHPL_TASKS: qthreads
CHPL_LAUNCHER: slurm-gasnetrun_ibv *
CHPL_TIMERS: generic
CHPL_UNWIND: none *
CHPL_MEM: jemalloc
CHPL_ATOMICS: cstdlib
CHPL_NETWORK_ATOMICS: none
CHPL_GMP: bundled
CHPL_HWLOC: bundled
CHPL_RE2: bundled
CHPL_LLVM: bundled *
CHPL_AUX_FILESYS: none
[ljenkin4@bluehive arkouda]$ grep MemTotal /proc/meminfo
MemTotal: 263519200 kB
[ljenkin4@bluehive arkouda]$
[ljenkin4@bluehive arkouda]$ lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 72
On-line CPU(s) list: 0-71
Thread(s) per core: 2
Core(s) per socket: 18
Socket(s): 2
NUMA node(s): 2
Vendor ID: GenuineIntel
CPU family: 6
Model: 79
Model name: Intel(R) Xeon(R) CPU E5-2695 v4 @ 2.10GHz
Stepping: 1
CPU MHz: 2896.984
CPU max MHz: 3300.0000
CPU min MHz: 1200.0000
BogoMIPS: 4199.99
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 46080K
NUMA node0 CPU(s): 0-17,36-53
NUMA node1 CPU(s): 18-35,54-71
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch epb cat_l3 cdp_l3 invpcid_single intel_ppin intel_pt tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm rdt_a rdseed adx smap xsaveopt cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts
inlineFunctions
? I.E. did it fail when trying to compile the output C code, or during earlier stage of compilation
resolve
time is around 125s, the lowerIterators
is 3s (and pretty much everything after that is low seconds until it makeBinary
)
bus error
leads me to believe something is wrong with your system's memory.
resolve
and makeBinary
are really the spots that take the majority of the time.
The make test
target is really running pytest
under the hood which you can invoke manually. i.e.
python3 -m pytest tests/numeric_test.py
You can run a specific one via
python3 -m pytest tests/numeric_test.py::NumericTest::testHistogram
Passing the -s
option will also write all of the output to stdout
pytest.ini
configuration file
make test-all
process and then re-run just one of the test files manually with the -s
option to see what's going on.
export ARKOUDA_DEVELOPER=1
)
E AssertionError: 'type[32 chars] of (Categorical, str, str_); got int instead' != 'type[32 chars] of (arkouda.categorical.Categorical, str, num[21 chars]tead'
E - type of argument "other" must be one of (Categorical, str, str_); got int instead
E + type of argument "other" must be one of (arkouda.categorical.Categorical, str, numpy.str_); got int instead
========================================================================================== FAILURES ==========================================================================================
_________________________________________________________________________________ CategoricalTest.testBinop __________________________________________________________________________________
self = <categorical_test.CategoricalTest testMethod=testBinop>
def testBinop(self):
cat = self._getCategorical()
catDupe = self._getCategorical()
catNonDupe = self._getRandomizedCategorical()
self.assertTrue((cat._binop(catDupe,'==')).all())
self.assertTrue((cat._binop(catNonDupe,'!=')).all())
self.assertTrue((ak.array([True,True,True,True,True,True,True,
True,True,True]) == cat._binop(catDupe,'==')).all())
self.assertTrue((ak.array([False,False,False,False,False,False,
False,False,False,False]) == cat._binop(catDupe,'!=')).all())
self.assertTrue((ak.array([True,False,False,False,False,False,
False,False,False,False]) ==
cat._binop('string 1', '==')).all())
self.assertTrue((ak.array([True,False,False,False,False,False,
False,False,False,False]) ==
cat._binop(np.str_('string 1'), '==')).all())
self.assertTrue((ak.array([False,True,True,True,True,True,True,True,True,True]) ==
cat._binop('string 1', '!=')).all())
self.assertTrue((ak.array([False,True,True,True,True,True,True,True,True,True]) ==
cat._binop(np.str_('string 1'), '!=')).all())
with self.assertRaises(NotImplementedError):
cat._binop('string 1', '===')
with self.assertRaises(TypeError) as cm:
cat._binop(1, '==')
> self.assertEqual(('type of argument "other" must be one of (Categorical, str, str_);' +
' got int instead'),
cm.exception.args[0])
E AssertionError: 'type[32 chars] of (Categorical, str, str_); got int instead' != 'type[32 chars] of (arkouda.categorical.Categorical, str, num[21 chars]tead'
E - type of argument "other" must be one of (Categorical, str, str_); got int instead
E + type of argument "other" must be one of (arkouda.categorical.Categorical, str, numpy.str_); got int instead
E ? ++++++++++++++++++++ ++++++
tests/categorical_test.py:129: AssertionError
================================================================================== short test summary info ===================================================================================
Name: numpy
Version: 1.20.1
Summary: NumPy is the fundamental package for array computing with Python.
Home-page: https://www.numpy.org
Author: Travis E. Oliphant et al.
Author-email: None
License: BSD
Location: /home/users/p02405/anaconda3/lib/python3.8/site-packages
Requires:
Required-by: tifffile, tables, statsmodels, seaborn, scipy, scikit-learn, scikit-image, PyWavelets, pyerfa, patsy, pandas, numexpr, numba, mkl-random, mkl-fft, matplotlib, imageio, hdflow, h5py, Bottleneck, bokeh, bkcharts, astropy