Jake Muff

Results 15 comments of Jake Muff

This shouldn't cause any negative impact to searching. `lunr-gr.js`- No problems searching in English and doesn't show up in searches. Cannot test Greek letters though. `lunr-en.js` - No problems searching...

I resolved sitemap.xml and feed.xml from showing up in the search by commenting out these jekyll plugins. See https://github.com/FiQCI/dev/commit/b4da2aaa7c002861fbc4ca43f1f8752098af951f

Here is the code snippet. It is essentially the same as Qiskit Tenerife currently but with the change in the basis_gates. ``` import os import json from qiskit.test.mock.fake_backend import FakeBackend...

I could submit a PR myself, something like: ``` elif node.name == "cz": if (physical_q0, physical_q1) in self.target["cz"]: continue if (physical_q1, physical_q0) in self.target["cz"]: dag.substitute_node_with_dag(node, self._cz_dag(*node.op.params)) else: raise TranspilerError( "The...

Great thanks for that! Hopefully it gets merged!

In case anyone is looking for a potential solution I have one. Running on Rocky Linux 8.8 with Cuda 12.2 This works ``` pip install cuquantum-python pip install nvidia-cusparse-cu12 nvidia-cublas-cu12...

Also have this error on `rockylinux:8.8`. Any fixes so far? Problem seems to be that `pip install symengine` places files in `/usr/local/lib64` and not `/usr/local/lib`

This works ``` git clone https://github.com/symengine/symengine.py.git cd symengine.py git checkout v0.11.0 sed -i 's/-DSYMENGINE_INSTALL_PY_FILES=OFF/-DSYMENGINE_INSTALL_PY_FILES=ON/' setup.py python setup.py install ```