forked from M-Labs/artiq
test: tighten required TransferTest timings.
smoltcp performs significantly better with LTO.
This commit is contained in:
parent
46bd96abd1
commit
e285fe0d56
|
@ -44,7 +44,7 @@ class TransferTest(ExperimentCase):
|
|||
exp = self.create(_Transfer)
|
||||
host_to_device_rate = exp.host_to_device()
|
||||
print(host_to_device_rate, "B/s")
|
||||
self.assertGreater(host_to_device_rate, 1.8e6)
|
||||
self.assertGreater(host_to_device_rate, 2.1e6)
|
||||
|
||||
@unittest.skipUnless(artiq_low_latency,
|
||||
"timings are dependent on CPU load and network conditions")
|
||||
|
@ -52,7 +52,7 @@ class TransferTest(ExperimentCase):
|
|||
exp = self.create(_Transfer)
|
||||
device_to_host_rate = exp.device_to_host()
|
||||
print(device_to_host_rate, "B/s")
|
||||
self.assertGreater(device_to_host_rate, 1.8e6)
|
||||
self.assertGreater(device_to_host_rate, 2.4e6)
|
||||
|
||||
|
||||
class _KernelOverhead(EnvExperiment):
|
||||
|
|
Loading…
Reference in New Issue