Browse Source

Pre Merge pull request !1975 from wangzhengjun/single_op_null_tensor

pull/1975/MERGE
wangzhengjun Gitee 3 years ago
parent
commit
8f28ccf675
6 changed files with 105 additions and 16 deletions
  1. +1
    -2
      ge/graph/manager/util/hcom_util.cc
  2. +10
    -10
      ge/graph/preprocess/graph_preprocess.cc
  3. +12
    -4
      ge/single_op/task/op_task.cc
  4. +11
    -0
      tests/ut/ge/graph/manager/hcom_util_unittest.cc
  5. +23
    -0
      tests/ut/ge/graph/preprocess/graph_preprocess_unittest.cc
  6. +48
    -0
      tests/ut/ge/single_op/single_op_task_unittest.cc

+ 1
- 2
ge/graph/manager/util/hcom_util.cc View File

@@ -109,8 +109,7 @@ Status HcomOmeUtil::GetHcomCount(const ge::ConstOpDescPtr &op_desc, HcclDataType
GE_CHK_STATUS_RET(ge::TensorUtils::GetSize(*op_desc->GetInputDescPtr(i), input_size),
"[Get][Size] from TensorDesc failed, op:%s, input index:%zu", op_desc->GetName().c_str(), i);
// dynamic shape hccl op get size from output tensor desc
if (op_desc->HasAttr(ATTR_NAME_IS_UNKNOWN_SHAPE)) {
GE_CHECK_NOTNULL(op_desc->GetOutputDescPtr(i));
if (op_desc->HasAttr(ATTR_NAME_IS_UNKNOWN_SHAPE) && (op_desc->GetOutputDescPtr(i) != nullptr)) {
GE_CHK_STATUS_RET(ge::TensorUtils::GetSize(*op_desc->GetOutputDescPtr(i), input_size),
"[Get][Size] from TensorDesc failed, op:%s, input index:%zu", op_desc->GetName().c_str(), i);
}


+ 10
- 10
ge/graph/preprocess/graph_preprocess.cc View File

@@ -415,16 +415,16 @@ Status UpdateVarFormats(const NodePtr &var, const GeTensorDesc &tensor_desc) {

Status RecoverTransRoadForVar(const NodePtr &var, const VarTransRoad &road) {
GE_CHECK_NOTNULL(var);
int index = 0;
static std::atomic_int index(0);
NodePtr last_node = var;
for (auto iter = road.rbegin(); iter != road.rend(); ++iter) {
auto trans_name = var->GetName() + "_trans_" + std::to_string(index++);
auto ret = RecoverOneTransNodeForVar(trans_name, *iter, last_node, last_node);
if (ret != SUCCESS) {
REPORT_CALL_ERROR("E19999", "Failed to recover trans node for variable %s, index %d, type %s",
var->GetName().c_str(), index, iter->node_type.c_str());
GELOGE(INTERNAL_ERROR, "[Recover][TransNode] for variable %s, index %d, type %s", var->GetName().c_str(),
index, iter->node_type.c_str());
REPORT_CALL_ERROR("E19999", "Failed to recover trans node for variable %s, index %s, type %s",
var->GetName().c_str(), std::to_string(index).c_str(), iter->node_type.c_str());
GELOGE(INTERNAL_ERROR, "[Recover][TransNode] for variable %s, index %s, type %s", var->GetName().c_str(),
std::to_string(index).c_str(), iter->node_type.c_str());
return INTERNAL_ERROR;
}
// set stream_label
@@ -460,17 +460,17 @@ Status RecoverTransRoadForVar(const NodePtr &var, const VarTransRoad &road) {
Status RecoverTransRoadForVarRef(const std::set<NodePtr> &nodes, const VarTransRoad &road) {
for (auto &var : nodes) {
GE_CHECK_NOTNULL(var);
int index = 0;
static std::atomic_int index(0);
NodePtr last_node = var;
GELOGI("Recover trans nodes for variable ref %s", var->GetName().c_str());
for (auto iter = road.rbegin(); iter != road.rend(); ++iter) {
auto trans_name = var->GetName() + "_trans_" + std::to_string(index++);
auto ret = RecoverOneTransNodeForVarRef(trans_name, *iter, last_node, last_node);
if (ret != SUCCESS) {
REPORT_CALL_ERROR("E19999", "Failed to recover trans node for variable %s, index %d, type %s",
var->GetName().c_str(), index, iter->node_type.c_str());
GELOGE(INTERNAL_ERROR, "[Recover][TransNode] for variable %s failed, index %d, type %s",
var->GetName().c_str(), index, iter->node_type.c_str());
REPORT_CALL_ERROR("E19999", "Failed to recover trans node for variable %s, index %s, type %s",
var->GetName().c_str(), std::to_string(index).c_str(), iter->node_type.c_str());
GELOGE(INTERNAL_ERROR, "[Recover][TransNode] for variable %s failed, index %s, type %s",
var->GetName().c_str(), std::to_string(index).c_str(), iter->node_type.c_str());
return INTERNAL_ERROR;
}
// set stream_label


+ 12
- 4
ge/single_op/task/op_task.cc View File

@@ -746,16 +746,24 @@ Status AiCpuBaseTask::UpdateIoAddr(const vector<DataBuffer> &inputs, const vecto
GE_CHK_BOOL_RET_STATUS(non_const_index < inputs.size(), ACL_ERROR_GE_PARAM_INVALID,
"[Check][Size] Input size is %zu, but get non_const_index is %zu", inputs.size(), non_const_index);
auto addr = inputs[non_const_index].data;
GE_CHECK_NOTNULL(addr);
GELOGD("AICpuTask input[%zu] addr = %p", input_index, addr);
uint64_t length = inputs[non_const_index].length;
if (length != 0 && addr == nullptr) {
GELOGE(PARAM_INVALID, "[Check][Addr]AiCpuTask input[%zu] addr is nullptr, length = %lu", input_index, length);
return PARAM_INVALID;
}
GELOGD("AICpuTask input[%zu] addr = %p, length = %lu.", input_index, addr, length);
*arg_base++ = reinterpret_cast<uintptr_t>(addr);
non_const_index++;
}

for (size_t i = 0; i < outputs.size(); ++i) {
auto addr = outputs[i].data;
GE_CHECK_NOTNULL(addr);
GELOGD("AICpuTask output[%zu] addr = %p", i, addr);
uint64_t length = outputs[i].length;
if (length != 0 && addr == nullptr) {
GELOGE(PARAM_INVALID, "[Check][Addr]AiCpuTask output[%zu] addr is nullptr, length = %lu", i, length);
return PARAM_INVALID;
}
GELOGD("AICpuTask output[%zu] addr = %p, length = %lu.", i, addr, length);
*arg_base++ = reinterpret_cast<uintptr_t>(addr);
}



+ 11
- 0
tests/ut/ge/graph/manager/hcom_util_unittest.cc View File

@@ -94,4 +94,15 @@ TEST_F(UtestHcomUtil, test_GetHcomCount_succ) {
auto ret = hcom_ome_util.GetHcomCount(op_desc, HCCL_DATA_TYPE_FP32, true, count);
EXPECT_EQ(ret, 0);
}

TEST_F(UtestHcomUtil, test_GetHcomCount_succ_2) {
ComputeGraphPtr graph = std::make_shared<ComputeGraph>("test");
NodePtr node = NodeBuilder("node", HCOMSEND).AddInputDesc({1, 1, 224, 224}).Build(graph);
auto op_desc = node->GetOpDesc();
HcomOmeUtil hcom_util;
int count = 0;
auto ret = hcom_util.GetHcomCount(op_desc, HCCL_DATA_TYPE_FP32, true, count);
EXPECT_EQ(ret, SUCCESS);
EXPECT_EQ(count, 224 * 224);
}
} // namespace ge

+ 23
- 0
tests/ut/ge/graph/preprocess/graph_preprocess_unittest.cc View File

@@ -23,6 +23,7 @@
#include "graph/passes/graph_builder_utils.h"
#include "graph/utils/attr_utils.h"
#include "graph/debug/ge_attr_define.h"
#include "graph/manager/graph_var_manager.h"

#define private public
#define protected public
@@ -285,4 +286,26 @@ TEST_F(UtestGraphPreproces, test_prepare_dyn_shape) {
GraphPrepare graph_prepare;
EXPECT_EQ(graph_prepare.PrepareDynShape(graph_node, user_input, compute_graph, 0), SUCCESS);
}

TEST_F(UtestGraphPreproces, test_updar_variable_formats) {
auto builder = ut::GraphBuilder("g1");
auto var = builder.AddNode("var", VARIABLE, 1, 1);
auto g1 = builder.GetGraph();
g1->SetSessionID(0);
TransNodeInfo trans_node_info;
VarTransRoad fusion_road;
fusion_road.emplace_back(trans_node_info);
VarManager::Instance(g1->GetSessionID())->SetTransRoad(var->GetName(), fusion_road);
GraphPrepare graph_prepare;
EXPECT_EQ(graph_prepare.UpdateVariableFormats(g1), INTERNAL_ERROR);

auto builder1 = ut::GraphBuilder("g2");
auto var1 = builder1.AddNode("var1", VARIABLE, 1, 1);
auto g2 = builder1.GetGraph();
g2->SetSessionID(0);
VarTransRoad fusion_road1;
VarManager::Instance(g2->GetSessionID())->SetTransRoad(var1->GetName(), fusion_road1);
AttrUtils::SetStr(var1->GetOpDesc(), REF_VAR_SRC_VAR_NAME, "var1");
EXPECT_EQ(graph_prepare.UpdateVariableFormats(g2), SUCCESS);
}
}

+ 48
- 0
tests/ut/ge/single_op/single_op_task_unittest.cc View File

@@ -189,3 +189,51 @@ TEST_F(UtestSingleOpTask, test_atomic_exec) {
optiling::utils::OpRunInfo run_info(0, true, 0);
task.CalcTilingInfo(run_info);
}

TEST_F(UtestSingleOpTask, test_aicpu_task_update_io_addr) {
AiCpuCCTask task;
task.num_inputs_ = 2;
task.num_outputs_ = 1;
task.input_is_const_ = {true, false};
int total_addr = 3;
uint32_t* addrs[total_addr] = {nullptr, nullptr, nullptr};
task.io_addr_ = reinterpret_cast<uintptr_t*>(addrs);
task.io_addr_num_ = total_addr;

{
vector<DataBuffer> inputs(1, DataBuffer());
vector<DataBuffer> outputs(1, DataBuffer());
auto ret = task.UpdateIoAddr(inputs, outputs);
ASSERT_EQ(ret, SUCCESS);
ASSERT_EQ(addrs[0], nullptr);
ASSERT_EQ(addrs[1], nullptr);
ASSERT_EQ(addrs[2], nullptr);
}

{
uint32_t data_buf[2];
vector<DataBuffer> inputs{DataBuffer(&data_buf[0], 4, false)};
vector<DataBuffer> outputs{DataBuffer(&data_buf[1], 4, false)};
auto ret = task.UpdateIoAddr(inputs, outputs);
ASSERT_EQ(ret, SUCCESS);
ASSERT_EQ(addrs[0], nullptr);
ASSERT_EQ(addrs[1], &data_buf[0]);
ASSERT_EQ(addrs[2], &data_buf[1]);
}

{
uint32_t data_buf[2];
vector<DataBuffer> inputs{DataBuffer(nullptr, 4, false)};
vector<DataBuffer> outputs{DataBuffer(&data_buf[1], 4, false)};
auto ret = task.UpdateIoAddr(inputs, outputs);
ASSERT_EQ(ret, PARAM_INVALID);
}

{
uint32_t data_buf[2];
vector<DataBuffer> inputs{DataBuffer(&data_buf[0], 4, false)};
vector<DataBuffer> outputs{DataBuffer(nullptr, 4, false)};
auto ret = task.UpdateIoAddr(inputs, outputs);
ASSERT_EQ(ret, PARAM_INVALID);
}
}

Loading…
Cancel
Save