Justin Lovinger

Results 43 comments of Justin Lovinger

Possibly related to .

@Aloxaf When I set `zstyle ':fzf-tab:*' show-group none` with , `$group` is always `__hide__1`. So that doesn't quite close this issue, because it doesn't keep `$group`. It looks like `zstyle...

It looks like `FZF_ENABLE_OPEN_PREVIEW` has similar issues with spaces in preview. I got fzf preview working with `--preview-window=right:wrap --preview="__fzf_complete_preview {}"`.

I think this is related to #152.

@dpvanbalen I don't see a good way to separate objective functions from optimizers in this situation. Different optimizers call objective functions in different ways, and some may call an objective...

@tmcdonell That looks close to what I'm looking for. My `liftAcc` would look something like ```haskell liftAcc :: (Arrays as, Arrays bs) => (as -> bs) -> Acc as ->...

@tmcdonell It sounds like you could implement `liftAcc` with a chain of `foreignAcc`, one for each backend, followed by an error. The main downside I see is you would need...

I'm developing a series of mathematical optimization and machine learning libraries in Haskell. I already published a PBIL implementation backed by Accelerate, , but I have a lot more in...

I think you would still need to compile the core `accelerate` package to WASM to use Accelerate on the web with WASM. Whether or not you can use Accelerate with...

I tried compiling Accelerate to Wasm using `wasm-cross`. It failed for similar reasons, broken dependencies. `terminal-size` fails to build with error `src/System/Console/Terminal/Posix.hsc:24 directive let cannot be handled in cross-compilation mode`....