Skip to content

Commit c69b52a

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-python-6.0.0
2 parents 70a07c3 + c52048f commit c69b52a

24 files changed

Lines changed: 2050 additions & 1535 deletions

.github/workflows/ci_build_library.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Build the library on different platforms and run tests
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/ci_build_wheels.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Build Python wheels and verify them
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/ci_docker_tests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Build Docker images and test them
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/ci_format_checks.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Check source code with linters and formatters
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/ci_hardware_options.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Test with instruction set extensions and parallelism
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/ci_sanitizer_tests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Test with address and memory sanitizers
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/ci_tcmalloc_test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ run-name: Test with TCMalloc (thread-caching malloc)
1818
on:
1919
push:
2020
branches:
21-
- master
2221
- main
2322

2423
pull_request:

.github/workflows/osv-scanner.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ on:
3131
types: [opened, synchronize]
3232
branches:
3333
- main
34-
- master
3534

3635
# Support merge queues.
3736
merge_group:

.github/workflows/scorecard-scanner.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ on:
2929
types: [opened, synchronize]
3030
branches:
3131
- main
32-
- master
3332

3433
# Support merge queues.
3534
merge_group:

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ vol. 574](https://www.nature.com/articles/s41586-019-1666-5), 2019).
5656
### C++ usage
5757

5858
The code is basically designed as a library. The user can modify sample
59-
applications in [apps](https://github.com/quantumlib/qsim/tree/master/apps)
59+
applications in [apps](https://github.com/quantumlib/qsim/tree/main/apps)
6060
to meet their own needs. The usage of sample applications is described in the
61-
[docs](https://github.com/quantumlib/qsim/blob/master/docs/usage.md).
61+
[docs](https://github.com/quantumlib/qsim/blob/main/docs/usage.md).
6262

6363
### Python usage
6464

@@ -78,7 +78,7 @@ conda install -c conda-forge qsimcirq
7878
```
7979

8080
_Note_: The core qsim library (located in the source repository under the
81-
[`lib/`](https://github.com/quantumlib/qsim/blob/master/lib) subdirectory) can
81+
[`lib/`](https://github.com/quantumlib/qsim/blob/main/lib) subdirectory) can
8282
be included directly in C++ programs without installing the Python interface.
8383

8484
### Cirq usage
@@ -87,31 +87,31 @@ be included directly in C++ programs without installing the Python interface.
8787
invoking Noisy Intermediate-Scale Quantum (NISQ) circuits. Cirq can use qsim
8888
as its simulation library. To get started with simulating Cirq circuits using
8989
qsim, please refer to the
90-
[tutorial](https://github.com/quantumlib/qsim/blob/master/docs/tutorials/qsimcirq.ipynb).
90+
[tutorial](https://github.com/quantumlib/qsim/blob/main/docs/tutorials/qsimcirq.ipynb).
9191

9292
More detailed information about the qsim-Cirq API can be found in the
93-
[docs](https://github.com/quantumlib/qsim/blob/master/docs/cirq_interface.md).
93+
[docs](https://github.com/quantumlib/qsim/blob/main/docs/cirq_interface.md).
9494

9595
### Input format
9696

9797
> [!WARNING]
9898
> This format is deprecated, and no longer actively maintained.
9999
100100
The circuit input format is described in the
101-
[docs](https://github.com/quantumlib/qsim/blob/master/docs/input_format.md).
101+
[docs](https://github.com/quantumlib/qsim/blob/main/docs/input_format.md).
102102

103103
### Sample circuits
104104

105105
A number of sample circuits are provided in
106-
[circuits](https://github.com/quantumlib/qsim/tree/master/circuits).
106+
[circuits](https://github.com/quantumlib/qsim/tree/main/circuits).
107107

108108
### Unit tests
109109

110110
Unit tests for C++ libraries use the
111111
[GoogleTest](https://github.com/google/googletest) framework, and are located in
112-
[tests](https://github.com/quantumlib/qsim/tree/master/tests). Python tests use
112+
[tests](https://github.com/quantumlib/qsim/tree/main/tests). Python tests use
113113
[pytest](https://docs.pytest.org/en/stable/), and are located in
114-
[qsimcirq_tests](https://github.com/quantumlib/qsim/tree/master/qsimcirq_tests).
114+
[qsimcirq_tests](https://github.com/quantumlib/qsim/tree/main/qsimcirq_tests).
115115

116116
To build and run all tests, run:
117117

0 commit comments

Comments
 (0)