forked from M-Labs/artiq
dds: use fast math for asf computations
This commit is contained in:
parent
e8aadd0a1a
commit
0ac0547bca
|
@ -125,12 +125,12 @@ class _DDSGeneric:
|
|||
word."""
|
||||
return pow/2**self.pow_width
|
||||
|
||||
@portable
|
||||
@portable(flags=["fast-math"])
|
||||
def amplitude_to_asf(self, amplitude):
|
||||
"""Returns amplitude scale factor corresponding to given amplitude."""
|
||||
return round(amplitude*0x0fff)
|
||||
|
||||
@portable
|
||||
@portable(flags=["fast-math"])
|
||||
def asf_to_amplitude(self, asf):
|
||||
"""Returns the amplitude corresponding to the given amplitude scale
|
||||
factor."""
|
||||
|
|
Loading…
Reference in New Issue