[Apache TVM Discuss] [Questions] BYO Datatype on GPU?

2022-02-17 Thread Victor van Acht via Apache TVM Discuss
I have succesfully created my own custom datatype (and some custom operators on this datatype) following the example as in: [https://tvm.apache.org/docs/how_to/extend_tvm/bring_your_own_datatypes.html](https://tvm.apache.org/docs/how_to/extend_tvm/bring_your_own_datatypes.html) This works great

[Apache TVM Discuss] [Questions] Custom datatypes in AutoScheduler?

2022-03-22 Thread Victor van Acht via Apache TVM Discuss
I have created a custom datatype in a model that I can compile and run. So far so good. Now I would like to optimize the execution of this model by using the AutoScheduler. However, each of the child processes that are started by the Autoscheduler errors out with the following error: No:

[Apache TVM Discuss] [Questions] Custom datatypes in AutoScheduler?

2022-03-23 Thread Victor van Acht via Apache TVM Discuss
@vinx13 I am sorry. I am not an TVM-expert. Your answer is too short for me to understand. Can you elaborate your answer in more detail? --- [Visit Topic](https://discuss.tvm.apache.org/t/custom-datatypes-in-autoscheduler/12377/3) to respond. You are receiving this because you enabled ma

[Apache TVM Discuss] [Questions] Custom datatypes in AutoScheduler?

2022-03-25 Thread Victor van Acht via Apache TVM Discuss
@vinx13 I modified reset_global_scope() in env.py into the following: import tvm def reset_global_scope(global_scope): """Reset global autotvm state. This is needed to initialize PopenPool workers.""" global GLOBAL_SCOPE GLOBAL_SCOPE.deep_copy(global_scope)