Connor Clark
Connor Clark
As pointed out here, https://github.com/crclark/foundationdb-haskell/pull/48#issuecomment-1002876006, connecting to multiple databases within a single process is allowed, but setting up multiple network threads is not. At the moment, we only expose a...
All operations in the directory layer currently assume that directories are not partitions. They need to support partitions and check whether the given directory is a partition when opening it....
Add a separate `test` section to the cabal file for the binding tester. The binding tester spec is [here](https://github.com/apple/foundationdb/blob/master/bindings/bindingtester/spec/bindingApiTester.md) WIP on this branch: https://github.com/crclark/foundationdb-haskell/tree/bindingtester
According to this [blog post](https://www.haskell.org/ghc/blog/20210709-capi-usage.html), the `capi` calling convention added with the [CApiFFI](https://downloads.haskell.org/ghc/9.0.1/docs/html/users_guide/exts/ffi.html?highlight=capiffi#extension-CApiFFI) language extension results in more portable code. I don't see a way to use `capi` instead of...
I just came across [this](https://github.com/awakenetworks/gRPC-haskell/blob/master/src/Network/GRPC/HighLevel/Server.hs#L32) and can't remember why it's optional to return a response message to a client streaming RPC. The [gRPC docs](http://www.grpc.io/docs/guides/concepts.html#client-streaming-rpc) don't mention that the server's response...
Fixes https://github.com/crclark/foundationdb-haskell/issues/56
### Required prerequisites - [X] Make sure you've read the [documentation](https://pybind11.readthedocs.io). Your issue may be addressed there. - [X] Search the [issue tracker](https://github.com/pybind/pybind11/issues) and [Discussions](https:/pybind/pybind11/discussions) to verify that this hasn't...
**Describe the Bug** `apex.__version__` is not exported. **Minimal Steps/Code to Reproduce the Bug** ```python import apex apex.__version__ ``` result: `AttributeError: module 'apex' has no attribute '__version__'` **Expected Behavior** expected result:...
With the JAX API, I am getting this warning: `/usr/local/lib/python3.10/dist-packages/transformer_engine/jax/flax/transformer.py:477: UserWarning: Fused attention is not enabled. Because no fused attention kernel is available, fall back to unfused attention.` Which leads...
**The bug** It seems that many models loaded with `models.Transformers()` error out with: `AssertionError: The passed tokenizer does have a byte_decoder property and using a standard gpt2 byte_decoder fails!` (side...