|
|
|
@ -56,6 +56,11 @@ static bool IsContainResourceOp(const ComputeGraphPtr &root_graph) {
|
|
|
|
|
if (type == DT_STRING || type == DT_RESOURCE || type == DT_STRING_REF) {
|
|
|
|
|
if (std::getenv("EXPERIMENTAL_DYNAMIC_PARTITION") == nullptr) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
GELOGE(FAILED, "In dynamic shape scene, model contains data type:"
|
|
|
|
|
"DT_STRING/DT_RESOURCE/DT_STRING_REF may not be supported well "
|
|
|
|
|
"temporarily, please retry with \"unset EXPERIMENTAL_DYNAMIC_PARTITION\".");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -64,6 +69,11 @@ static bool IsContainResourceOp(const ComputeGraphPtr &root_graph) {
|
|
|
|
|
if (type == DT_STRING || type == DT_RESOURCE || type == DT_STRING_REF) {
|
|
|
|
|
if (std::getenv("EXPERIMENTAL_DYNAMIC_PARTITION") == nullptr) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
GELOGE(FAILED, "In dynamic shape scene, model contains data type:"
|
|
|
|
|
"DT_STRING/DT_RESOURCE/DT_STRING_REF may not be supported well "
|
|
|
|
|
"temporarily, please retry with \"unset EXPERIMENTAL_DYNAMIC_PARTITION\".");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|