Pennylane-Lightning GPU

I am running a code on gpu. The code is:

import pennylane as qml

wires=4

dev4 = qml.device("lightning.gpu", wires=wires)  # define the simulator
@qml.qnode(dev4)
def CONVCircuit(phi, wires, i=0):
    """
    quantum convolution Node
    """
    # parameter
    theta = np.pi / 2

    qml.RX(phi[0] * np.pi, wires=0)
    qml.RX(phi[1] * np.pi, wires=1)
    qml.RX(phi[2] * np.pi, wires=2)
    qml.RX(phi[3] * np.pi, wires=3)

    qml.CRZ(theta, wires=[1, 0])
    qml.CRZ(theta, wires=[3, 2])
    qml.CRX(theta, wires=[1, 0])
    qml.CRX(theta, wires=[3, 2])
    qml.CRZ(theta, wires=[2, 0])
    qml.CRX(theta, wires=[2, 0])

    # Expectation value
    measurement = qml.expval(qml.PauliZ(wires=0))

    return measurement


def QCONV1(X, image_number, image_total, step=2):
    """
    quantum convolutional layer
    """

    #H, W, CH = X.shape
    H, W = X.shape
    step2 = 2
    out = np.zeros(((H//step), (W//step)))
    #progress = 0
    for i in range(0, W, step):
        #print("processing image "+str(image_number)+"/ "+str(image_total)+": "+str(int(((i/W+1))*100))+"% ", end="\r")
        print("processing image "+str(image_number)+"/ "+str(image_total)+": "+str(i)+"px   ", end="\r")
        for j in range(0, H, step):
            # get 2x2 pixels and make them 1D array
            phi = X[i:i+2, j:j+2].flatten()
            # Get Measurement
            measurement = CONVCircuit(phi, len(phi))
            out[i//step, j//step] = measurement

    return out

I am getting the error:

Error in PennyLane Lightning: the provided PTX was compiled with an unsupported toolchain.

I am executing the code on the NVIDIA DGX-1 server, which has 512 GB RAM, 7TB SSD, 40 CPU cores and 8 of V100(Volta) GPUs running the Ubuntu 18.04 operating system.

Hi @mass_of_15. Can you confirm for me your version of lightning.gpu, and the version of CUDA on your system, as well as the output of qml.about().

I suspect this is due to the library being compiled with a newer version of CUDA than your system has available. Can you try upgrading the version of PennyLane Lightning-GPU, and seeing if this fixes your issue:

python -m pip install pennylane-lightning-gpu --upgrade

We issued a release today that aims to support CUDA toolchains from 11.5 and newer, which may solve your problem if the CUDA version is the issue.

The output of qml.about():

Name: PennyLane
Version: 0.26.0
Summary: PennyLane is a Python quantum machine learning library by Xanadu Inc.
Home-page: https://github.com/XanaduAI/pennylane
Author: 
Author-email: 
License: Apache License 2.0
Location: /usr/local/lib/python3.8/dist-packages
Requires: appdirs, autograd, autoray, cachetools, networkx, numpy, pennylane-lightning, retworkx, scipy, semantic-version, toml
Required-by: PennyLane-Lightning, PennyLane-Lightning-GPU

Platform info:           Linux-4.15.0-140-generic-x86_64-with-glibc2.29
Python version:          3.8.10
Numpy version:           1.18.5
Scipy version:           1.9.2
Installed devices:
- lightning.gpu (PennyLane-Lightning-GPU-0.28.0)
- lightning.qubit (PennyLane-Lightning-0.26.0)
- default.gaussian (PennyLane-0.26.0)
- default.mixed (PennyLane-0.26.0)
- default.qubit (PennyLane-0.26.0)
- default.qubit.autograd (PennyLane-0.26.0)
- default.qubit.jax (PennyLane-0.26.0)
- default.qubit.tf (PennyLane-0.26.0)
- default.qubit.torch (PennyLane-0.26.0)
- default.qutrit (PennyLane-0.26.0)

The CUDA version is 11.0

Are there any compatible versions?

Hi @mass_of_15

I can see two issues:

  1. The version of PennyLane installed is much older than the version of LightningGPU. It would be best to ensure all packages share the common minor versioning (in this case, 0.28.x). You can upgrade PennyLane with python -m pip install pennylane --upgrade
  2. CUDA 11.0 is too old to work with LightningGPU — we currently require a minimum CUDA version of 11.5. Assuming your CUDA driver is at least 450.x, it should be possible to simply upgrade the CUDA runtime libraries. If this is a managed system, I suggest requesting a system administrator to upgrade the CUDA installation. If not, you can download a new CUDA version from NVIDIA’s website, and add the new CUDA library directory to your LD_LIBRARY_PATH.

With both, it should be possible to run using the V100 devices. Feel free to let us know if you require any further assistance.

Hi, Now I have PennyLane - 0.28.0, PennyLane-Lightning -v0.28.1 and PennyLane-Lightning-GPU -v0.28.1. and CUDA -v11.5.
This time I am getting another error:

name 'PLException' is not defined

Is there any name or variable not defined by me?
Please look into this.

Hi @mass_of_15
Can you try creating a fresh environment, and retry your script?

python3 -m venv pyenv
source ./pyenv/bin/activate
python -m pip install pennylane pennylane-lightning-gpu cuquantum

It may be possible that due to the 0.26 → 0.28 change, the updates did not correctly take. If this does not work, please feel free to let me know and we can aim to debug further.

1 Like

Hi @mlxd , I face the same problem. I get

NameError: name 'PLException' is not defined

The info I get from qml.about() is

`Name: PennyLane
Version: 0.30.0
Summary: PennyLane is a Python quantum machine learning library by Xanadu Inc.
Home-page: GitHub - PennyLaneAI/pennylane: PennyLane is a cross-platform Python library for differentiable programming of quantum computers. Train a quantum computer the same way as a neural network.
Author:
Author-email:
License: Apache License 2.0
Location: /home/geola/.local/lib/python3.8/site-packages
Requires: appdirs, autograd, autoray, cachetools, networkx, numpy, pennylane-lightning, requests, rustworkx, scipy, semantic-version, toml
Required-by: PennyLane-Lightning, PennyLane-Lightning-GPU

Platform info: Linux-5.15.0-1030-gcp-x86_64-with-glibc2.29
Python version: 3.8.10
Numpy version: 1.23.5
Scipy version: 1.10.1
Installed devices:

  • default.gaussian (PennyLane-0.30.0)
  • default.mixed (PennyLane-0.30.0)
  • default.qubit (PennyLane-0.30.0)
  • default.qubit.autograd (PennyLane-0.30.0)
  • default.qubit.jax (PennyLane-0.30.0)
  • default.qubit.tf (PennyLane-0.30.0)
  • default.qubit.torch (PennyLane-0.30.0)
  • default.qutrit (PennyLane-0.30.0)
  • null.qubit (PennyLane-0.30.0)
  • lightning.qubit (PennyLane-Lightning-0.30.0)`

Can you please help me?

Hey @George_LA! Can you share your code?

Hi @George_LA and @mlxd and @isaacdevlugt,

Even I tried the solution given by @mlxd, however, I was not able to run the script.

So, instead, I did this:

import torch
device = torch.device("cuda:0" if (torch.cuda.is_available()) else "cpu")

I created the quantum circuit under a class. Then, I sent it to the GPU. It was able to utilize it.

class QCNN(nn.Module):

    def CONVCircuit(phi, wires, i=0):

    """
    quantum convolution Node
    """
    # parameter
         theta = np.pi / 2

         qml.RX(phi[0] * np.pi, wires=0)
         qml.RX(phi[1] * np.pi, wires=1)
         qml.RX(phi[2] * np.pi, wires=2)
         qml.RX(phi[3] * np.pi, wires=3)

         qml.CRZ(theta, wires=[1, 0])
         qml.CRZ(theta, wires=[3, 2])
         qml.CRX(theta, wires=[1, 0])
         qml.CRX(theta, wires=[3, 2])
         qml.CRZ(theta, wires=[2, 0])
         qml.CRX(theta, wires=[2, 0])

    # Expectation value
          measurement = qml.expval(qml.PauliZ(wires=0))

          return measurement


     def QCONV1(X, image_number, image_total, step=2):
    """
    quantum convolutional layer
    """

    #H, W, CH = X.shape
          H, W = X.shape
          step2 = 2
          out = np.zeros(((H//step), (W//step)))
    #progress = 0
          for i in range(0, W, step):
        #print("processing image "+str(image_number)+"/ "+str(image_total)+": "+str(int(((i/W+1))*100))+"% ", end="\r")
               print("processing image "+str(image_number)+"/ "+str(image_total)+": "+str(i)+"px   ", end="\r")
               for j in range(0, H, step):
            # get 2x2 pixels and make them 1D array
                     phi = X[i:i+2, j:j+2].flatten()
            # Get Measurement
                     measurement = CONVCircuit(phi, len(phi))
                     out[i//step, j//step] = measurement

           return out

qcnn = QCNN().to(device)

1 Like

Hi @George_LA and @mass_of_15

To better help with this issue, it would be a big help to have an end-to-end example that is directly runnable as a python file. While I understand it can be a challenge when these issues pop up, if we can do python your_file.py on a given script that throws the error, we can more easily examine the source of the issue. Since the earlier example with lightning.gpu doesn’t attempt to run any code, and just set’s up the problem I am unable to reproduce it locally.

If the earlier example is what is causing the issue for you, after defining the device, can I suggest you ensure you have no additional directories at the path you are running the code — in this instance, running PennyLane code without directories named pennylane pennylane-lightning or pennnylane-lightning-gpu, as they can interfere with the Python package resolution. If you have this structure, you can try this with python -I my_script.py which tells the Python environment to ignore all current and user site-packages (see here for more info).

If that fails, can you output the following so that we can see the binaries are correctly installed:

ls $(python -c "import os; import pennylane_lightning as pll; print(os.path.dirname(pll.__file__))")
ls $(python -c "import os; import pennylane_lightning_gpu as plg; print(os.path.dirname(plg.__file__))")
echo $PYTHONPATH

Also, please ensure that cuquantum is installed with the corresponding CUDA 11.x version. You can force this via python -m pip install custatevec-cu11.

Lastly, to ensure no issues occur due to cross-contamination of other environments, it is always best to start all experiments from a fresh Python env, as different versions can cause issues.

Feel free to let us know if any of the above helps.

1 Like

Thank you for the solution. I am able to utilize the GPU. However, its utilization is only around 5%. Is there any way to increase the GPU utilization?

Hey @mass_of_15, this is probably due to the fact that you’re using a pretty small circuit (<<20 qubits). If you have relatively small circuits I would stay away from lightning.gpu.

I am also facing NameError: name 'PLException' is not defined
when executing this example: demo Lightning-fast simulations with PennyLane and the NVIDIA cuQuantum SDK

qml.about() gives me:

Name: PennyLane
Version: 0.30.0
Summary: PennyLane is a Python quantum machine learning library by Xanadu Inc.
Home-page: https://github.com/XanaduAI/pennylane
Author: 
Author-email: 
License: Apache License 2.0
Location: ...
Requires: requests, numpy, appdirs, scipy, autoray, cachetools, toml, semantic-version, pennylane-lightning, autograd, rustworkx, networkx
Required-by: PennyLane-qsharp, PennyLane-qiskit, PennyLane-Lightning, PennyLane-Lightning-GPU, PennyLane-Cirq, amazon-braket-pennylane-plugin

Platform info:           Linux-5.4.0-110-generic-x86_64-with-glibc2.17
Python version:          3.8.13
Numpy version:           1.22.0
Scipy version:           1.7.3
Installed devices:
- braket.aws.ahs (amazon-braket-pennylane-plugin-1.16.0)
- braket.aws.qubit (amazon-braket-pennylane-plugin-1.16.0)
- braket.local.ahs (amazon-braket-pennylane-plugin-1.16.0)
- braket.local.qubit (amazon-braket-pennylane-plugin-1.16.0)
- lightning.qubit (PennyLane-Lightning-0.30.0)
- default.gaussian (PennyLane-0.30.0)
- default.mixed (PennyLane-0.30.0)
- default.qubit (PennyLane-0.30.0)
- default.qubit.autograd (PennyLane-0.30.0)
- default.qubit.jax (PennyLane-0.30.0)
- default.qubit.tf (PennyLane-0.30.0)
- default.qubit.torch (PennyLane-0.30.0)
- default.qutrit (PennyLane-0.30.0)
- null.qubit (PennyLane-0.30.0)
- lightning.gpu (PennyLane-Lightning-GPU-0.30.0)
- cirq.mixedsimulator (PennyLane-Cirq-0.29.0)
- cirq.pasqal (PennyLane-Cirq-0.29.0)
- cirq.qsim (PennyLane-Cirq-0.29.0)
- cirq.qsimh (PennyLane-Cirq-0.29.0)
- cirq.simulator (PennyLane-Cirq-0.29.0)
- qiskit.aer (PennyLane-qiskit-0.23.0)
- qiskit.basicaer (PennyLane-qiskit-0.23.0)
- qiskit.ibmq (PennyLane-qiskit-0.23.0)
- qiskit.ibmq.circuit_runner (PennyLane-qiskit-0.23.0)
- qiskit.ibmq.sampler (PennyLane-qiskit-0.23.0)
- microsoft.QuantumSimulator (PennyLane-qsharp-0.19.0)

There is enough gpu and I ran all the pip installs suggested in this discussion. How did you manage to do it @mass_of_15 ?

Hi @shyguy, welcome to the Forum!

Your error looks like an installation error. My suggestion would be to do the following:

1 - Create a new virtual environment with Conda
2 - Install PennyLane using python -m pip install pennylane
3 - Install cuQuantum using python -m pip install cuquantum-python
4 - Try running the simplest code possible:

import pennylane as qml
dev = qml.device("lightning.gpu", wires=1)
@qml.qnode(dev)
def circuit():
    qml.PauliX(0)
    return qml.expval(qml.PauliZ(0))
circuit()

If you have any installation questions about cuQuantum you can check their installation instructions on their website.

If you still get an error could you please share your entire error traceback?

@isaacdevlugt I am kind of facing a similar issue. How do I know the number of qubits of the circuit? I did a qml.specs() but I am not sure where to see it. Could you please help me?

{'resources': Resources(num_wires=6, num_gates=37, gate_types=defaultdict(<class 'int'>, {'AmplitudeEmbedding': 1, 'RX': 18, 'CNOT': 18}), gate_sizes=defaultdict(<class 'int'>, {6: 1, 1: 18, 2: 18}), depth=22, shots=Shots(total_shots=None, shot_vector=())),
 'gate_sizes': defaultdict(int, {6: 1, 1: 18, 2: 18}),
 'gate_types': defaultdict(int,
             {'AmplitudeEmbedding': 1, 'RX': 18, 'CNOT': 18}),
 'num_operations': 37,
 'num_observables': 6,
 'num_diagonalizing_gates': 0,
 'num_used_wires': 6,
 'num_trainable_params': 18,
 'depth': 22,
 'num_device_wires': 6,
 'device_name': 'lightning.gpu',
 'expansion_strategy': 'gradient',
 'gradient_options': {},
 'interface': 'auto',
 'diff_method': 'best',
 'gradient_fn': 'pennylane.gradients.parameter_shift.param_shift',
 'num_gradient_executions': 36}

Hi @bharadwaj509 ,

num_device_wires is the number of qubits.

In PennyLane the qubits are called wires :grinning:

1 Like