Skip to content

Commit

Permalink
[feature/CI_setup] Turning off multistring tests on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesETsmith committed Jun 11, 2024
1 parent 0bd8b84 commit df87e58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion include/__pauli_op.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,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 df87e58

Please sign in to comment.