mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-25 11:18:27 +08:00
coredevice.dds: update from obsolete int(width=) syntax (fixes #621).
This commit is contained in:
parent
99104499f9
commit
5119fa394d
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user