ifsheldon
ifsheldon
# Provide a minimally reproducible example You can clone my [repo](https://github.com/ifsheldon/tensor-network-notes) and initialize the environment with `uv sync`. The code in the repo is not relevant, but I'm sure that...
This resolves the issue in https://github.com/arogozhnikov/einops/issues/295#issuecomment-2850339745, adding a backend for MLX so that we can use `einsum`. Since MLX has very similar APIs to PyTorch and Numpy, the `MLXBackend` looks...
Hi! I'm learning quantum computing and tensor network, so I need to do a lot of tensor contractions. Thank you for developing such a great library. It really makes my...
This fixes #1348
I am following https://component-model.bytecodealliance.org/language-support/rust.html#importing-an-interface-into-a-command-component to create a command component with `cargo-component`. My adder WIT was: ``` package component:adder; world adder { export add: func(a: s32, b: s32) -> s32; }...
When I walked through the tutorial in https://component-model.bytecodealliance.org/language-support/rust.html#importing-an-interface-into-a-command-component with my own adder example, after Step 3 adding `package.metadata.component.target.dependencies` and running `cargo build component`, I found `bindings.rs` was generated under `src`...
https://github.com/bytecodealliance/cargo-component/blob/1e58afa097e153797e4195cf3f2bc749a3654f31/README.md?plain=1#L184 Hi! I saw this today, but the referred issue has been closed as complete. The latest cargo-component 0.19 still uses wasm-wasip1 as the default build target. Rust in the...
Hi! Thanks for writing this crate. It seems the example in the repo no longer works on newer Rust. I clone this repo and run `cargo doc --open` with Rust...
### Feature description Support for complex numbers in tensors. ### Feature motivation I saw your presentation on Scientific Computing in Rust and come to know burn. As I skim through...
Hi! I'm trying to port my quantum computing and tensor network code from PyTorch to MLX, but I find `mlx.core.linalg.qr` and `mlx.core.linalg.svd` do not support matrices of complex64. These two...