"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "55b440f3cf58aa766e7ca14a02f0367f630b22c8"
Commit 700e1336 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

experiments/basicmem: do two write operations instead of one

parent 32c6f2aa
...@@ -34,7 +34,9 @@ class MemTest(nodec.AppConfig): ...@@ -34,7 +34,9 @@ class MemTest(nodec.AppConfig):
def run_cmds(self, node): def run_cmds(self, node):
return [ return [
f'busybox devmem 0x{self.addr:x} 64 0x42', f'busybox devmem 0x{self.addr:x} 64 0x1234567834567890',
f'busybox devmem 0x{self.addr:x} 64',
f'busybox devmem 0x{self.addr:x} 64 0x9876543276543210',
f'busybox devmem 0x{self.addr:x} 64' f'busybox devmem 0x{self.addr:x} 64'
] ]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment