Elliot Saba

Results 474 comments of Elliot Saba

You could also make it a lazy artifact so it's only downloaded upon first use.

First, add the following to your `Artifacts.toml`: ``` [[cmdstan]] arch = "x86_64" git-tree-sha1 = "d62fd175524efc55e3258b7fbd290c640bd52c89" libc = "glibc" os = "linux" lazy = true [[cmdstan.download]] sha256 = "d944d23ac7ed5ebf924d859f3a1f3052891161e2c70313503f21257ea13f0b0c" url =...

Clearly I don't understand what `stanc` is. I thought that the only thing you needed from that tarball was the `linux-stanc` binary, but it looks like you're running a build...

Looking into this a bit more, I see that even if we pre-build `stan`, the way you use `stan` it still needs a compiler and linker and stuff, because it's...

I fixed a couple problems in https://github.com/SciML/SciMLBenchmarks.jl/pull/426, merge that then rebase this on top of `master`.

I've marked this as draft because `Socket()` fails upon trying to call `getsockopt(ZMQ_FD)` until https://github.com/zeromq/libzmq/issues/3953 is resolved.

This is interesting; `libstdc++.so.6` should already be loaded by Julia, and we ship a much more recent `libstdc++.so.6` than is denoted by that error. If I had to guess, I...

@nalimilan can we bundle a newer `libstdc++.so.6` in the private libdir of your Julia distribution? We would need one that is GCC 7 or later; you can get one from...

I've been using this utility wrapper: ```julia # Define DyadicLevels; a useful way to iterate over a dyadic signal representation, # such as that returned from `dwt()`. struct DyadicLevels data::Vector...