Skip to content

Commit 8c91e88

Browse files
committed
Fixing unittests
Signed-off-by: Sachin Pisal <[email protected]>
1 parent d635ff8 commit 8c91e88

File tree

2 files changed

+45
-24
lines changed

2 files changed

+45
-24
lines changed

unittests/dynamics/test_cudm_helpers.cpp

+24-10
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,36 @@
1212
#include <gtest/gtest.h>
1313

1414
// Initialize operator_sum
15-
template <typename HandlerTy>
15+
template <typename HandlerTy = std::complex<double>>
1616
cudaq::operator_sum<HandlerTy> initialize_operator_sum() {
1717
std::vector<int> degrees = {0, 1};
1818

1919
// Matrix operators
2020
cudaq::matrix_operator pauli_x("pauli_x", {0});
2121
cudaq::matrix_operator pauli_z("pauli_z", {1});
22-
cudaq::matrix_operator identity = cudaq::matrix_operator::identity(0);
22+
cudaq::product_operator<cudaq::matrix_operator> identity =
23+
cudaq::matrix_operator::identity(0);
2324

24-
auto prod_op_1 = cudaq::scalar_operator(std::complex<double>(1.0, 0.0)) *
25-
pauli_x * pauli_z;
25+
std::vector<cudaq::matrix_operator> identity_vec = identity.get_terms();
26+
auto identity_op = cudaq::product_operator<cudaq::matrix_operator>(
27+
cudaq::scalar_operator(1.0), identity_vec);
28+
29+
std::vector<cudaq::matrix_operator> pauli_x_vec = {pauli_x};
30+
auto prod_op_1 = cudaq::product_operator<cudaq::matrix_operator>(
31+
cudaq::scalar_operator(1.0), pauli_x_vec);
32+
33+
std::vector<cudaq::matrix_operator> pauli_z_vec = {pauli_z};
34+
prod_op_1 = prod_op_1 * cudaq::product_operator<cudaq::matrix_operator>(
35+
cudaq::scalar_operator(1.0), pauli_z_vec);
2636

2737
auto prod_op_2 =
28-
cudaq::scalar_operator(std::complex<double>(0.5, -0.5)) * identity;
38+
cudaq::product_operator<cudaq::matrix_operator>(
39+
cudaq::scalar_operator(std::complex<double>(0.5, -0.5))) *
40+
identity_op;
2941

30-
cudaq::operator_sum<HandlerTy> op_sum({prod_op_1, prod_op_2});
42+
std::vector<cudaq::product_operator<cudaq::matrix_operator>> terms = {
43+
prod_op_1, prod_op_2};
44+
cudaq::operator_sum<cudaq::product_operator> op_sum(terms);
3145

3246
return op_sum;
3347
}
@@ -89,10 +103,10 @@ TEST_F(CuDensityMatTestFixture, ComputeLindbladOp) {
89103
TEST_F(CuDensityMatTestFixture, ConvertToCuDensityMatOperator) {
90104
std::vector<int64_t> mode_extents = {2, 2};
91105

92-
auto op_sum = initialize_operator_sum<void>();
106+
auto op_sum = initialize_operator_sum<std::complex<double>>();
93107

94108
EXPECT_NO_THROW({
95-
auto result = cudaq::convert_to_cudensitymat_operator<void>(
109+
auto result = cudaq::convert_to_cudensitymat_operator<std::complex<double>>(
96110
handle, {}, op_sum, mode_extents);
97111
ASSERT_NE(result, nullptr);
98112
cudensitymatDestroyOperator(result);
@@ -104,9 +118,9 @@ TEST_F(CuDensityMatTestFixture, InvalidHandle) {
104118
cudensitymatHandle_t invalid_handle = nullptr;
105119

106120
std::vector<int64_t> mode_extents = {2, 2};
107-
auto op_sum = initialize_operator_sum<void>();
121+
auto op_sum = initialize_operator_sum<std::complex<double>>();
108122

109-
EXPECT_THROW(cudaq::convert_to_cudensitymat_operator<void>(
123+
EXPECT_THROW(cudaq::convert_to_cudensitymat_operator<std::complex<double>>(
110124
invalid_handle, {}, op_sum, mode_extents),
111125
std::runtime_error);
112126
}

unittests/dynamics/test_runge_kutta_integrator.cpp

+21-14
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class RungeKuttaIntegratorTest : public ::testing::Test {
1919
cudensitymatHandle_t handle_;
2020
cudensitymatOperator_t liouvillian_;
2121
std::shared_ptr<cudm_time_stepper> time_stepper_;
22-
std::unique_ptr<runge_kutta_integrator<void>> integrator_;
22+
std::unique_ptr<runge_kutta_integrator<std::complex<double>>> integrator_;
2323
std::unique_ptr<cudm_state> state_;
2424

2525
void SetUp() override {
@@ -41,9 +41,10 @@ class RungeKuttaIntegratorTest : public ::testing::Test {
4141

4242
double t0 = 0.0;
4343
// Initialize the integrator (using substeps = 4, for Runge-Kutta method)
44-
ASSERT_NO_THROW(integrator_ =
45-
std::make_unique<runge_kutta_integrator<void>>(
46-
std::move(*state_), t0, time_stepper_, 4));
44+
ASSERT_NO_THROW(
45+
integrator_ =
46+
std::make_unique<runge_kutta_integrator<std::complex<double>>>(
47+
std::move(*state_), t0, time_stepper_, 4));
4748
ASSERT_NE(integrator_, nullptr);
4849
}
4950

@@ -61,18 +62,22 @@ TEST_F(RungeKuttaIntegratorTest, Initialization) {
6162

6263
// Integration with Euler Method (substeps = 1)
6364
TEST_F(RungeKuttaIntegratorTest, EulerIntegration) {
64-
auto eulerIntegrator = std::make_unique<runge_kutta_integrator<void>>(
65-
cudm_state(handle_, mock_initial_state_data(), mock_hilbert_space_dims()),
66-
0.0, time_stepper_, 1);
65+
auto eulerIntegrator =
66+
std::make_unique<runge_kutta_integrator<std::complex<double>>>(
67+
cudm_state(handle_, mock_initial_state_data(),
68+
mock_hilbert_space_dims()),
69+
0.0, time_stepper_, 1);
6770
eulerIntegrator->set_option("dt", 0.1);
6871
EXPECT_NO_THROW(eulerIntegrator->integrate(1.0));
6972
}
7073

7174
// Integration with Midpoint Rule (substeps = 2)
7275
TEST_F(RungeKuttaIntegratorTest, MidpointIntegration) {
73-
auto midpointIntegrator = std::make_unique<runge_kutta_integrator<void>>(
74-
cudm_state(handle_, mock_initial_state_data(), mock_hilbert_space_dims()),
75-
0.0, time_stepper_, 2);
76+
auto midpointIntegrator =
77+
std::make_unique<runge_kutta_integrator<std::complex<double>>>(
78+
cudm_state(handle_, mock_initial_state_data(),
79+
mock_hilbert_space_dims()),
80+
0.0, time_stepper_, 2);
7681
midpointIntegrator->set_option("dt", 0.1);
7782
EXPECT_NO_THROW(midpointIntegrator->integrate(1.0));
7883
}
@@ -110,9 +115,11 @@ TEST_F(RungeKuttaIntegratorTest, MultipleIntegrationSteps) {
110115

111116
// Missing Time Step (dt)
112117
TEST_F(RungeKuttaIntegratorTest, MissingTimeStepOption) {
113-
auto integrator_missing_dt = std::make_unique<runge_kutta_integrator<void>>(
114-
cudm_state(handle_, mock_initial_state_data(), mock_hilbert_space_dims()),
115-
0.0, time_stepper_, 2);
118+
auto integrator_missing_dt =
119+
std::make_unique<runge_kutta_integrator<std::complex<double>>>(
120+
cudm_state(handle_, mock_initial_state_data(),
121+
mock_hilbert_space_dims()),
122+
0.0, time_stepper_, 2);
116123

117124
EXPECT_THROW(integrator_missing_dt->integrate(1.0), std::invalid_argument);
118125
}
@@ -142,7 +149,7 @@ TEST_F(RungeKuttaIntegratorTest, LargeTimeStep) {
142149

143150
// Invalid Substeps
144151
TEST_F(RungeKuttaIntegratorTest, InvalidSubsteps) {
145-
EXPECT_THROW(std::make_unique<runge_kutta_integrator<void>>(
152+
EXPECT_THROW(std::make_unique<runge_kutta_integrator<std::complex<double>>>(
146153
cudm_state(handle_, mock_initial_state_data(),
147154
mock_hilbert_space_dims()),
148155
0.0, time_stepper_, 3),

0 commit comments

Comments
 (0)