Skip to content

Commit 6195109

Browse files
authored
Merge branch 'main' into QHED
2 parents 14267b7 + a13c8ce commit 6195109

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

docs/sphinx/using/backends/hardware/neutralatom.rst

+8
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ set to 100.
228228
229229
To see a complete example for using Pasqal's backend, take a look at our :doc:`Python examples <../../examples/hardware_providers>`.
230230

231+
.. note::
232+
233+
Local emulation via ``emulate`` flag is not yet supported on the `pasqal` target.
234+
231235

232236
QuEra Computing
233237
++++++++++++++++
@@ -298,3 +302,7 @@ set to 100.
298302
cudaq.evolve(RydbergHamiltonian(...), schedule=s, shots_count=1000)
299303
300304
To see a complete example for using QuEra's backend, take a look at our :doc:`Python examples <../../examples/hardware_providers>`.
305+
306+
.. note::
307+
308+
Local emulation via ``emulate`` flag is not yet supported on the `quera` target.

runtime/cudaq/platform/pasqal/PasqalBaseQPU.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ class PasqalBaseQPU : public BaseRemoteRESTQPU {
3636
std::uint64_t resultOffset,
3737
const std::vector<void *> &rawArgs) override {
3838

39-
if (kernelName.find(cudaq::runtime::cudaqAHKPrefixName) != 0) {
39+
if (kernelName.find(cudaq::runtime::cudaqAHKPrefixName) != 0)
4040
throw std::runtime_error(
4141
"Arbitrary kernel execution is not supported on this target.");
42-
}
42+
43+
if (emulate)
44+
throw std::runtime_error(
45+
"Local emulation is not yet supported on this target.");
4346

4447
cudaq::info("Launching remote kernel ({})", kernelName);
4548
std::vector<cudaq::KernelExecution> codes;

runtime/cudaq/platform/quera/QuEraBaseQPU.h

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ class QuEraBaseQPU : public BaseRemoteRESTQPU {
3636
throw std::runtime_error(
3737
"Arbitrary kernel execution is not supported on this target.");
3838

39+
if (emulate)
40+
throw std::runtime_error(
41+
"Local emulation is not yet supported on this target.");
42+
3943
cudaq::info("Launching remote kernel ({})", kernelName);
4044
std::vector<cudaq::KernelExecution> codes;
4145

0 commit comments

Comments
 (0)