echuraev commented on code in PR #15745:
URL: https://github.com/apache/tvm/pull/15745#discussion_r1327295692
##########
src/runtime/opencl/opencl_module.cc:
##########
@@ -353,9 +357,10 @@ PackedFunc OpenCLModuleNode::GetFunction(const String&
name,
}
Module OpenCLModuleCreate(std::string data, std::string fmt,
- std::unordered_map<std::string, FunctionInfo> fmap,
std::string source) {
+ std::unordered_map<std::string, FunctionInfo> fmap,
std::string source,
+ bool dry_run) {
auto n = make_object<OpenCLModuleNode>(data, fmt, fmap, source);
- n->Init();
+ n->Init(dry_run);
Review Comment:
Thank you for your comment! Previous implementation was refactored and now
we don't need this parameter.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]