-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
259 changed files
with
99 additions
and
110,701 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
set(BUILD_GRID_SYNTH OFF) | ||
if(MSVC) | ||
find_package(PkgConfig) | ||
if(PkgConfig_FOUND) | ||
# gmp, gmpxx | ||
pkg_check_modules(gmp IMPORTED_TARGET gmp) | ||
pkg_check_modules(gmpxx IMPORTED_TARGET gmpxx) | ||
if(gmp_FOUND AND gmpxx_FOUND) | ||
set(BUILD_GRID_SYNTH ON) | ||
add_compile_options("-DEXPR_GMP") | ||
endif() | ||
endif() | ||
else() | ||
find_package(GMP) | ||
if(GMP_FOUND) | ||
set(BUILD_GRID_SYNTH ON) | ||
add_compile_options("-DEXPR_GMP") | ||
endif() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
message(STATUS "Detecting pybind11...") | ||
find_package(pybind11 CONFIG) | ||
if(NOT pybind11_FOUND) | ||
# Install pybind11 on demand | ||
include(FetchContent) | ||
set(CMAKE_POLICY_DEFAULT_CMP0077 NEW) | ||
message(STATUS "pybind11 not detected, fetching pybind11...") | ||
FetchContent_Declare( | ||
pybind11 | ||
GIT_REPOSITORY https://github.com/pybind/pybind11 | ||
GIT_TAG master | ||
GIT_SHALLOW TRUE | ||
GIT_PROGRESS TRUE) | ||
FetchContent_MakeAvailable(pybind11) | ||
set(PYBIND11_INCLUDE_DIRS ${pybind11_SOURCE_DIR}) | ||
endif() | ||
message(STATUS "Detected pybind11 in: ${PYBIND11_INCLUDE_DIRS}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#### MSVC lack of pthread.h | ||
if (MSVC) | ||
include_directories(SYSTEM ${STAQ_INSTALL_DIR}/third_party/pthreadwin32) | ||
endif () | ||
# MSVC lack of pthread.h | ||
if(MSVC) | ||
include_directories(SYSTEM ${STAQ_INSTALL_DIR}/third_party/pthreadwin32) | ||
endif() | ||
|
||
#### MSVC bigobj | ||
if (MSVC) | ||
add_compile_options(-bigobj) | ||
endif () | ||
# MSVC bigobj | ||
if(MSVC) | ||
add_compile_options(-bigobj) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ cnot_resynth | |
map | ||
get_resources | ||
output_cirq | ||
output_ionq | ||
output_projectq | ||
output_qsharp | ||
output_quil | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
53 changes: 0 additions & 53 deletions
53
unit_tests/libs/googletest-1.14.0/.github/ISSUE_TEMPLATE/00-bug_report.yml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.