Marco Heisig
Marco Heisig
I use this airline theme together with the doom-nord. It might be useful for others, too.
```lisp (with-input-from-string (stream "#1=(#1#)") (eclector.concrete-syntax-tree:cst-read stream)) ``` evaluates to a cst whose raw data is `#1=(#1#)`, but whose FIRST cst has the raw data `(t)`
The simple, recursive scheme that is currently used to scan and print data structures occasionally blows the stack. It only happens for very large data structures, but it is still...
Typo is a portable type inference library for Common Lisp. It also supports automatic differentiation and has a built in function data base for a large part of Common Lisp....
Second round of Trucler feedback: - variable-description should inherit ignore-mixin - every variable can be declared as 'ignore' or 'ignorable'. - authentic-variable-description should inherit dynamic-extent-mixin. The 'dynamic-extent' annotation makes sense...
MPI 3.0 introduced many primitives for one-sided communication (get/put/windows...). It would be nice to have access to those from cl-mpi.
Not all collective MPI operations are currently supported. Someone should fix this...
Currently, cl-mpi creates a small shared C library to interface with the host MPI. This is inconvenient on distributed systems, because it requires recompilation on each node. Someone should add...
Debugging MPI applications is painful. It would be nice to have an optional extension of cl-mpi that provides some means for distributed debugging. A possible implementation would be to provide...