david-macmahon

Results 24 issues of david-macmahon

While exploring Parallel HDF5 via HDF5.jl I discovered that parallel HDF5 does not support variable length strings (maybe any variable type?). To store fixed length strings, I made my own...

strings
datatype

The concept of memory pinning is discussed in the “Tasks and threads” section of the documentation (in `multitasking.md`), but `Mem.pin` is only shown as part of a larger example. It...

documentation
good first issue

The `plan_*fft` functions in `AbstractFFTs` take keyword arguments, but the methods of these functions provided by `CUDA.CUFFT` do not. Code that passes keyword arguments to these functions, e.g. to influence...

bug
good first issue

The FFT planning functions, `plan_fft` et al., accept a keyword argument `flags` that is used to provide options to the planning function of the FFT implementation. The `flags` argument is...

As described in the current UVH5 memo, the UVH5 format seems to assume/require that antennas have only one position for all the visibilities in the file. Normally data are not...

enhancement
needs research
UVData

UVH5 requires that all cross-polarizations for each pair of antennas are grouped together in the `visdata` dataset. In fact, `Npols` is a dimension of `visdata`. This is fine for radio...

enhancement
needs research
UVData

Chicken.app crashes (disappears) frequently after upgrading MacOS to Monterey (MacOS 12.0.1). Used to be very stable on MacOS 11 (Big Sur). Maybe just needs a rebuild???

redis-server can use only UNIX sockets (i.e. no TCP sockets) by setting `port` to 0 and `unixsocket` to the pathname of a UNIX socket. Redis.jl only supports TCP sockets currently...

When all the elements of a zset have unique scores, the OrderedCollections.OrderedSet returned by `zrange(conn, zsetname, 0, n, :withscores)` makes sense: ```julia julia> zadd(r, "zsettest", 1, "one") 1 julia> zadd(r,...

Since PR #81 has been merged into master, it would be nice to have that fix/functionality available as a tagged release rather than having to use `Redis.jl#master` to get it....