forked from M-Labs/artiq
artiq_run: fix multiarch
This commit is contained in:
parent
dda4121c1d
commit
08b09f6dc3
|
@ -21,7 +21,6 @@ from artiq.master.databases import DeviceDB, DatasetDB
|
||||||
from artiq.master.worker_db import DeviceManager, DatasetManager
|
from artiq.master.worker_db import DeviceManager, DatasetManager
|
||||||
from artiq.coredevice.core import CompileError, host_only
|
from artiq.coredevice.core import CompileError, host_only
|
||||||
from artiq.compiler.embedding import EmbeddingMap
|
from artiq.compiler.embedding import EmbeddingMap
|
||||||
from artiq.compiler.targets import OR1KTarget
|
|
||||||
from artiq.compiler import import_cache
|
from artiq.compiler import import_cache
|
||||||
from artiq.tools import *
|
from artiq.tools import *
|
||||||
|
|
||||||
|
@ -53,7 +52,7 @@ class FileRunner(EnvExperiment):
|
||||||
def build(self, file):
|
def build(self, file):
|
||||||
self.setattr_device("core")
|
self.setattr_device("core")
|
||||||
self.file = file
|
self.file = file
|
||||||
self.target = OR1KTarget()
|
self.target = self.core.target_cls()
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
kernel_library = self.compile()
|
kernel_library = self.compile()
|
||||||
|
|
Loading…
Reference in New Issue