gdl
gdl copied to clipboard
GDL - GNU Data Language
Apparently READ and READF use the same complicated code, with optional inserts due to the need of using libreadline for READ, and that in a loop moreover. This does not...
Apparently, GDL goes frequently besides line 433 of envt.cpp (function resize) when it should not, and this makes a performance problem. There is a flaw in the code.
I've uncovered a few rather odd behaviours in GDL relating to wheel events and `widget_draw` (plus one in IDL that is dead wrong). Test code (include `/wheel' in the options...
OK, the performance issues within FOR loops detected first on Mac M2/M3 is in fact also here on x86_64 * Linux U22 my old laptop / gcc time_test4 : 1.06796=Total...
The handling of variable-length strings is not yet implemented in hdf5_unified_read For the case that the dataset has just a single element, I implemented it in my local version: ```...
H5D_OPEN fails on windows, with the error message: "H5D_OPEN: Invalid arguments to routine". This can be reproduced with TEST_HDF5_BYTE_ARRAY from testsuite/test_hdf5.pro, for example. The reason for that error is the...
``` Start 101: test_hdf5.pro 101: Test command: /builddir/build/BUILD/gdl-1.0.2/build/src/gdl "-quiet" "-e" "if execute('test_hdf5') ne 1 then exit, status=1" 101: Working Directory: /builddir/build/BUILD/gdl-1.0.2/build/testsuite 101: Environment variables: 101: LC_COLLATE=C 101: GDL_PATH=/builddir/build/BUILD/gdl-1.0.2/testsuite/:/builddir/build/BUILD/gdl-1.0.2/src/pro/ 101: GDL_STARTUP=...
GAUSSFIT & GAUSS2DFIT are not resistant to NaN. It is easy to circumvent that for 1D gaussfit (flagging before call), more difficult in 2D, this is why we have a...
Thanks to some super simple tests in error in `test_isa.pro`, I got : ``` GDL> size(hash(),/n_di) 1 GDL> size(list(),/n_di) 1 [...] IDL> size(hash(),/n_di) 0 IDL> size(list(),/n_di) 0 ```
This problem was issued due to tests related to LUDC #1700 (for the record, in GDL if compiled with Eigen, two algorithms are available : GSL & Eigen , selectable...