microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
minestarks/circuit-magic

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/pip/qsharp/interop/qiskit/execution/default.py

10lines · modecode

1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4
5from concurrent.futures import ThreadPoolExecutor
6
7
8class DetaultExecutor(ThreadPoolExecutor):
9 def __init__(self) -> None:
10 super().__init__(max_workers=1)
11