From d7f439792437cdb22c057c897ff4f0450b70b2ab Mon Sep 17 00:00:00 2001 From: whitequark Date: Sun, 20 Nov 2016 09:47:43 +0000 Subject: [PATCH] coredevice.dds: update from obsolete int(width=) syntax (fixes #621). --- artiq/coredevice/dds.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/artiq/coredevice/dds.py b/artiq/coredevice/dds.py index ffec5d710..63a147742 100644 --- a/artiq/coredevice/dds.py +++ b/artiq/coredevice/dds.py @@ -1,6 +1,7 @@ from artiq.language.core import * from artiq.language.types import * from artiq.language.units import * +from numpy import int64 _PHASE_MODE_DEFAULT = -1 @@ -111,14 +112,14 @@ class _DDSGeneric: """Returns the frequency tuning word corresponding to the given frequency. """ - return round(int(2, width=64)**32*frequency/self.core_dds.sysclk) + return round(int64(2)**32*frequency/self.core_dds.sysclk) @portable(flags=["fast-math"]) def ftw_to_frequency(self, ftw): """Returns the frequency corresponding to the given frequency tuning word. """ - return ftw*self.core_dds.sysclk/int(2, width=64)**32 + return ftw*self.core_dds.sysclk/int64(2)**32 @portable(flags=["fast-math"]) def turns_to_pow(self, turns):