54c995dbf7c96c1184c2baf64de87bc9566fe33a,python/tvm/relay/op/strategy/generic.py,,naive_schedule,#Any#Any#Any#,30
Before Change
if "gpu" in target.keys:
// For GPU, we at least need thread binding to make a valid schedule.
// So the naive schedule cannot be compiled.
raise RuntimeError(
"Cannot compile for GPU targets if no tuned schedule is found. "
"Please see the warning messages above for more information about the failed workloads."
)
return te.create_schedule(outs[-1].op)
def wrap_topi_schedule(topi_schedule):
After Change
if "gpu" in target.keys:
// For GPU, we at least need thread binding to make a valid schedule.
// So the naive schedule cannot be compiled.
logger.debug(
"Cannot compile for GPU targets if no tuned schedule is found. "
"Please see the warning messages above for more information about the failed workloads."
)
return te.create_schedule(outs[-1].op)
def wrap_topi_schedule(topi_schedule):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: apache/incubator-tvm
Commit Name: 54c995dbf7c96c1184c2baf64de87bc9566fe33a
Time: 2021-01-08
Author: comaniac0422@gmail.com
File Name: python/tvm/relay/op/strategy/generic.py
Class Name:
Method Name: naive_schedule
Project Name: senarvi/theanolm
Commit Name: 66aa72feaf6cccdc6ee132b24465b0f113bb0d31
Time: 2015-10-09
Author: seppo.git@marjaniemi.com
File Name: theanolm/src/theanolm/trainers/modeltrainer.py
Class Name: ModelTrainer
Method Name: validations_since_min_cost
Project Name: SeldonIO/seldon-core
Commit Name: 3972ee672edbf6726f8c15354fd2f3829f7d0af9
Time: 2020-05-19
Author: agm@seldon.io
File Name: python/tests/helpers.py
Class Name: MicroserviceWrapper
Method Name: _wait_until_ready