Judah Jacobson
Judah Jacobson
Our bindings currently link against the `snappy` C library due to the dependency on `snappy-framing`. As far as I can tell, the only reason we use that library is for...
I accidentally uploaded to Hackage a version of the `tensorflow` library (0.1.0.0) which didn't actually build since it didn't include its `c_api.h` file. We can make our unit tests check...
#111 started consolidating some packages; see also discussion in #66. We should consider doing this further, perhaps: - merge `tensorflow-logging` into `tensorflow` - merge `tensorflow-opgen` and/or `tensorflow-proto` into `tensorflow` There's...
Currently, to work around #92, we may do multiple unnecessary copies when fetching the result of a computation. (See also discussion in the PR #108.) If the output type requires...
Currently, the only options for fetching a multi-dimensional Tensor are lists or Vectors, both of which concatenate it into one dimension. (For example, a shape of [2,2,2] will turn into...
It would be nice for Ormolu to "hang" function applications when possible: ``` main = f x ``` instead of (as it does now) ``` main = f x ```...
SQLite lets you start an "in-memory" database. If we wrapped that in an `ST`-like monad, we could implement a "pure" backend that could be used in tests without dropping into...
Splitting out a comment from @mpilgrem, originally on #88: The native consoles on Windows 10 are [ANSI-capable](https://docs.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences), and there is no longer any version of Windows that has mainstream support...
How should we support packages like `proto-lens` or `gl` that generate Haskell modules with a custom Setup file? Allow custom user rules? Actually just run their Setup script? Some specific...