Changes between Initial Version and Version 2 of Ticket #25431
- Timestamp:
- May 23, 2018, 12:06:44 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25431
- Property Cc caruso roed chapoton added
-
Property
Authors
changed from
to
Julian Rüth
-
Ticket #25431 – Description
initial v2 1 The patchbots time out with some lattice precision tests https://patchbot.sagemath.org/log/0/Ubuntu/18.04/x86_64/4.15.0-20-generic/petitbonum/2018-05-11%2012:03:31?short 1 The patchbots time out with some lattice precision tests https://patchbot.sagemath.org/log/0/Ubuntu/18.04/x86_64/4.15.0-20-generic/petitbonum/2018-05-11%2012:03:31?short. I have also seen the same issues with GitLab CI tests. 2 2 3 I have also seen the same issues with GitLab CI tests. The timeout is in `padic_lattice_element` here: 3 The test suite takes too much time, more precisely `_test_matrix_smith`. 4 4 {{{ 5 sage: R = ZpLC(2, label='init') # indirect doctest ## line 868 ## 6 sage: R ## line 869 ## 7 2-adic Ring with lattice-cap precision (label: init) 8 sage: sig_on_count() # check sig_on/off pairings (virtual doctest) ## line 871 ## 9 0 10 sage: R = ZpLC(7, label='init') ## line 878 ## 11 sage: TestSuite(R).run(skip='_test_teichmuller') ## line 879 ## 5 sage: R = QpLC(7, label='init') 6 sage: %time TestSuite(R).run(skip='_test_teichmuller') 7 Wall time: 2min 59s 8 sage: %time R._test_matrix_smith() 9 Wall time: 2min 56s 12 10 }}} 13 14 and in `padic_base_leaves` here15 {{{16 sage: TestSuite(R).run(skip=['_test_teichmuller']) ## line 13 ##17 }}}