!47592 column_order is deprecated in 2.0, remove the parse logic

Merge pull request !47592 from luoyang/fix-datajson-mindir-2.0
This commit is contained in:
i-robot 2023-01-07 06:16:36 +00:00 committed by Gitee
commit d567ebd6cc
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 0 additions and 1 deletions

View File

@ -169,7 +169,6 @@ std::vector<std::string> MindIRLoader::LoadPreprocess(const std::string &file_na
child_dataset_json["op_type"] = nlohmann::json::parse(preprocessor.op()[i].op_type());
child_dataset_json["operations"] = nlohmann::json::parse(preprocessor.op()[i].operations());
child_dataset_json["output_columns"] = nlohmann::json::parse(preprocessor.op()[i].output_columns());
child_dataset_json["project_columns"] = nlohmann::json::parse(preprocessor.op()[i].project_columns());
child_dataset_json["offload"] = preprocessor.op()[i].offload();
dataset_json["children"] = child_dataset_json;