File tree 3 files changed +17
-2
lines changed
docs/sphinx/using/backends/hardware
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -228,6 +228,10 @@ set to 100.
228
228
229
229
To see a complete example for using Pasqal's backend, take a look at our :doc: `Python examples <../../examples/hardware_providers >`.
230
230
231
+ .. note ::
232
+
233
+ Local emulation via ``emulate `` flag is not yet supported on the `pasqal ` target.
234
+
231
235
232
236
QuEra Computing
233
237
++++++++++++++++
@@ -298,3 +302,7 @@ set to 100.
298
302
cudaq.evolve(RydbergHamiltonian(... ), schedule = s, shots_count = 1000 )
299
303
300
304
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.
Original file line number Diff line number Diff line change @@ -36,10 +36,13 @@ class PasqalBaseQPU : public BaseRemoteRESTQPU {
36
36
std::uint64_t resultOffset,
37
37
const std::vector<void *> &rawArgs) override {
38
38
39
- if (kernelName.find (cudaq::runtime::cudaqAHKPrefixName) != 0 ) {
39
+ if (kernelName.find (cudaq::runtime::cudaqAHKPrefixName) != 0 )
40
40
throw std::runtime_error (
41
41
" 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." );
43
46
44
47
cudaq::info (" Launching remote kernel ({})" , kernelName);
45
48
std::vector<cudaq::KernelExecution> codes;
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ class QuEraBaseQPU : public BaseRemoteRESTQPU {
36
36
throw std::runtime_error (
37
37
" Arbitrary kernel execution is not supported on this target." );
38
38
39
+ if (emulate)
40
+ throw std::runtime_error (
41
+ " Local emulation is not yet supported on this target." );
42
+
39
43
cudaq::info (" Launching remote kernel ({})" , kernelName);
40
44
std::vector<cudaq::KernelExecution> codes;
41
45
You can’t perform that action at this time.
0 commit comments