Skip to content

Commit

Permalink
[feature/CI_setup] more CI tinkering
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesETsmith committed Jun 11, 2024
1 parent f8652d1 commit 919af5d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/all_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
compiler: [g++-12]
# compiler: [g++-12, clang++-17]
compiler: [g++-12, clang++-17]
# python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10"]
steps:
Expand Down
1 change: 0 additions & 1 deletion include/__pauli_op.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ template <std::floating_point T> struct PauliOp {
#pragma omp for schedule(static)
for (size_t i = 0; i < pauli_strings.size(); ++i) {
size_t const tid = omp_get_thread_num();
fmt::println("thread {} index {}", tid, i);

PauliString const &ps = pauli_strings[i];
std::complex<T> c = coeffs[i];
Expand Down
1 change: 1 addition & 0 deletions include/__pauli_string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ struct PauliString {
* @brief Apply the PauliString to a batch of states. This function takes a
* different shape of the states than the other apply functions. here all the
* states (new and old) are transposed so their shape is (n_dims x n_states).
* All the new_stats are overwritten, no need to initialize.
*
* @tparam T The floating point base to use for all the complex numbers
* @param new_states_T The outpus states after applying the PauliString
Expand Down

0 comments on commit 919af5d

Please sign in to comment.