Skip to content

Commit 09735b0

Browse files
Remove stray prints
1 parent 09a25f1 commit 09735b0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

examples/aot_mlp/mlp_export_simple.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,10 @@ def infer():
4141
import iree.runtime as rt
4242

4343
config = rt.Config("local-task")
44-
print("Loading module")
4544
vmm = rt.load_vm_module(
4645
rt.VmModule.wrap_buffer(config.vm_instance, compiled_binary.map_memory()),
4746
config,
4847
)
49-
print("Loaded.")
50-
5148
x = np.random.rand(97, 8).astype(np.float32)
5249
y = vmm.main(x)
5350
print(y.to_host())

0 commit comments

Comments
 (0)