Skip to content

Commit dec4520

Browse files
committed
Fix timeout by reducing the number of symbols
1 parent 06fbb54 commit dec4520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_quantum/core/ops/math_ops/inner_product_hessian_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def test_inner_product_hessian_inputs(self):
334334
def test_correctness_with_symbols(self, n_qubits, batch_size,
335335
inner_dim_size):
336336
"""Tests that inner_product_hessian works with symbols."""
337-
symbol_names = ['alpha', 'beta', 'gamma', 'delta', 'eta', 'kappa']
337+
symbol_names = ['alpha', 'beta', 'gamma']
338338
n_params = len(symbol_names)
339339
qubits = cirq.GridQubit.rect(1, n_qubits)
340340
circuit_batch, resolver_batch = \

0 commit comments

Comments
 (0)