I've been starting to create a quantum application using the Qristal SDK. I've gotten it running in a Docker image and successfully printed results from using a qpp
back end with a kind of hello world count exercise (trying to see that it does in fact run the algo and return results expected in a quantum query).
What I am having trouble with is how to get this to run at scale. Do I need to continually run the application (as a quantum circuit) over time, or can I scale the qubits being emulated to account for a greater or more accurate outcome?
Here's is the circuit that I've tried.
my_sim.instring = '''
__qpu__ void QUANTUMPROGRAM(qreg q)
{
OPENQASM 2.0;
include "qelib1.inc";
creg c[2];
h q[0];
cx q[0], q[1];
measure q[1] -> c[1];
measure q[0] -> c[0];
}
'''