schedule = anchor_impl->second.Schedule(anchor_attrs_, tensor_outs,
target_);
Here I’m learning the lowering code that create schedule from relay function. When I track to this function, I get lost,
te::Schedule OpImplementation::Schedule(const Attrs& attrs, const Array<te::Tensor>& outs,
const Target& target) {
return (*this)->fschedule(attrs, outs, target);
}
Seems it tracks into python? How can I find it?