Changsoo Kim

Results 5 issues of Changsoo Kim

Isn't it right to add `[:, [2, 1, 0], :, :]` at the 199th line in utils.py? https://github.com/ZhaoJ9014/face.evoLVe.PyTorch/blob/a33a9121198ed354eb6b0d7c214443f09908ccc1/util/utils.py#L188 https://github.com/ZhaoJ9014/face.evoLVe.PyTorch/blob/a33a9121198ed354eb6b0d7c214443f09908ccc1/util/utils.py#L199 I think rgb conversion is also needed to the tensors not...

I tried running the following code using Slurm: ```py from qibo import gates from qibo.models.circuit import Circuit from qibo.transpiler.pipeline import Passes from qibo.transpiler.unroller import NativeGates, Unroller circuit = Circuit(3) circuit.add(gates.H(0))...

duplicate

This covers issue #1493. This PR updates the qubit representation in `qibo` to support hardware execution after transpilation. `Circuit.wire_names` and `Gate.qubits` will be used on the hardware side. ### Terms...

`wire_names` stores the qubit names, and `Gate.qubits` contains the index of the target qubit names in `wire_names`. However, `wire_names` is currently ignored during the transpilation process. The transpilation needs to...

transpiler

@sorewachigauyo Paul mentioned that an unroller is needed to decompose the circuit using `CNOT`, `GPI2`, `RZ`, `Z`, and `M`. To achieve this, `CNOT` should be included as a native gate....

enhancement