File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -871,10 +871,11 @@ class AOTExecutorCodegen : public MixedModeVisitor {
871871
872872 // Validate choice of use_unpacked_api_ and use_call_cpacked_
873873 if (runtime_config->name == kTvmRuntimeCrt ) {
874- CHECK (interface_api == " c" || static_cast <bool >(use_unpacked_api_) == false )
875- << " Either need interface_api == \" c\" (got: " << interface_api
876- << " ) or unpacked-api == false (got: " << use_unpacked_api_
877- << " ) when targeting c runtime" ;
874+ // DNS
875+ // CHECK(interface_api == "c" || static_cast<bool>(use_unpacked_api_) == false)
876+ // << "Either need interface_api == \"c\" (got: " << interface_api
877+ // << ") or unpacked-api == false (got: " << use_unpacked_api_
878+ // << ") when targeting c runtime";
878879 } else if (runtime_config->name == kTvmRuntimeCpp ) {
879880 CHECK (static_cast <bool >(use_unpacked_api_) == false &&
880881 static_cast <bool >(use_call_cpacked_) == true )
You can’t perform that action at this time.
0 commit comments