Skip to content

Commit

Permalink
Merge branch 'master' into update_las_transforms
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoyard authored Oct 17, 2023
2 parents 83decff + 46b3603 commit a38f3e8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/gradients/core/test_pulse_gradient.py
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,6 @@ def ansatz(params):
diff_method=stoch_pulse_grad,
num_split_times=num_split_times,
sampler_seed=7123,
cache=False, # remove once 3870 is merged
)
qnode_backprop = qml.QNode(ansatz, dev, interface="jax")

Expand Down
2 changes: 1 addition & 1 deletion tests/pulse/test_convenience_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def f1(p, t):
ops = [qml.PauliX(0), qml.PauliY(1)]
H = qml.dot(coeffs, ops)

t = (1, 2)
t = (1, 1.1)

def generator(params):
time_step = 1e-3
Expand Down
2 changes: 1 addition & 1 deletion tests/pulse/test_parametrized_evolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def test_time_dependent_hamiltonian(self, device_class):
H = time_dependent_hamiltonian()

dev = device_class(wires=2)
t = 2
t = 0.1

def generator(params):
time_step = 1e-3
Expand Down

0 comments on commit a38f3e8

Please sign in to comment.