rht
rht
## Description The [Mesa](https://github.com/projectmesa/mesa) agent-based modeling library is looking to replace its self-hosted Tornado-based visualization server with Voilà. I have made a prototype in https://github.com/rht/mesa-examples/tree/voila. However, I encountered the flickering...
### Problem I tried to change the `pygments_style` in my project: https://github.com/projectmesa/mesa/pull/1719. I have waited for #1463 so that I can use Sphinx 7. However, the build still uses the...
I have a `contract_path` and `contract` sequence on a tensor that would OOM when `memory_limit` is `None`. I tried to reduce the memory consumption of the computation (I don't mind...
**Description of the issue** First reported in https://github.com/quantumlib/qsim/issues/612. Cirq `~=1.0` requires qsimcirq to return its simulation output as a `cirq.StateVectorTrialResult`. In the current implementation, it causes an OOM when running...
As stated in https://github.com/zulip/python-zulip-api/pull/739#discussion_r988218529.
I was running the following code on a cuQuantum Appliance 23.03 Docker instance, on an [a2-highgpu-1g](https://gcloud-compute.com/a2-highgpu-1g.html), with a RAM of 85 GB: ```python import cirq num_qubits = 32 qc_cirq =...
Minimal reproducer: ```python import cirq import qsimcirq simulator = qsimcirq.QSimSimulator() q = cirq.NamedQubit("q") circuit = cirq.Circuit([ cirq.measure(q, key="c"), cirq.ClassicallyControlledOperation(cirq.Z(q), "c") ]) simulator.simulate(circuit) ``` Traceback: ```console Traceback (most recent call last):...