[Apache TVM Discuss] [Questions] Tuning doesn't finish even after several hours

2022-02-12 Thread Ali Arch808 via Apache TVM Discuss
Hi everyone. I'm new to TVM and I'm trying to tune a simple onnx model using `auto_scheduler.TaskScheduler` on my CPU. The tuning process doesn't finish even after several hours and doesn't either return me any logs. The model has a simple structure so I assume tuning it should require a lot o

[Apache TVM Discuss] [Questions] Why relay.floor_mod allows float64?

2022-02-12 Thread Haoyang Ma via Apache TVM Discuss
I am confused why `relay.floor_mod` allows variable of type `float64` as parameter. So I wrote the following script: ``` import tvm from tvm import relay from tvm.contrib import graph_runtime import numpy as np def vmobj_to_list(o, dtype="float64"): if isinstance(o, tvm.nd.NDArray):