We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980772b commit 235e623Copy full SHA for 235e623
1 file changed
qxmt/devices/builder.py
@@ -111,5 +111,17 @@ def build(self) -> BaseDevice:
111
device_options=device_options,
112
logger=self.logger,
113
)
114
+ elif platform == QULACS_PLATFORM:
115
+ from qxmt.devices.qulacs_device import QulacsDevice
116
+
117
+ return QulacsDevice(
118
+ platform=platform,
119
+ device_name=device_name,
120
+ backend_name=backend_name,
121
+ n_qubits=n_qubits,
122
+ shots=shots,
123
+ device_options=device_options,
124
+ logger=self.logger,
125
+ )
126
else:
127
raise InvalidPlatformError(f'"{platform}" is not implemented.')
0 commit comments