Guibou
Guibou
I can confirm that all the files and flags are correctly passed to HLS using a `hie.yaml` file as simple as: ```yaml cradle: bios: shell: "generate_flags_for_project > $HIE_BIOS_OUTPUT" ``` The...
The problem is perfectly reproducible when the use of the symbol is in a `Main` module and when you have multiples `Main` module in the environment. I'm still trying to...
I'm having this problem on a large codebase using latest neovim from git, neovim it at 100% CPU. Disabling the watcher gives me back my 0-1% CPU. Could this be...
@lewis6991 I tried your snippet and had a lot of exception on ` local d = vim.split(data, '%s+')` about `data` being `null`. I added a test and now I have...
Actually, the same thing is happening if you change some base library. For example `contentHash (mempty :: Data.HashMap.Strict.HashMap () ())` returns a different result on two different GHC environment. I...
The branch https://github.com/guibou/funflow/tree/stable_unordered-containers-hash-cas-hashable contains two commits to fix this problem: - One is fixing the `typeRepFingerprint` and just replace it by `()`. This is discutable. - One is fixing the...
I recently hit an issue due to this behavior. In #3227 I was calling `nix-env -i $(nix-build something)`, in the event of a build failure, nix-env will nicely start to...
The branch https://github.com/guibou/funflow/tree/stable_unordered-containers-hash-cas-hashable contains a commit which fix for this issue: it pre-sort the `HashMap` before hashing. It adds an `Ord` constraint, so the design is discutable. I can open...
However, removing cas-hashable from our codebase took me less time than fixing this (I'm now using a one line function which compute the sha256 sum of the output of `cereal`...
Hi @dorranh. We are solving virtual population of patient and the effect of treatments on them. So basically, we have a list of tasks (i.e. simulating a patient), some tasks...