Browse Source

Transdata for va

tags/v1.3.0
zk 4 years ago
parent
commit
f1039e62be
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      ge/common/formats/format_transfers/format_transfer_fractal_z.cc

+ 1
- 2
ge/common/formats/format_transfers/format_transfer_fractal_z.cc View File

@@ -25,7 +25,6 @@
#include "framework/common/debug/ge_log.h" #include "framework/common/debug/ge_log.h"
#include "framework/common/debug/log.h" #include "framework/common/debug/log.h"
#include "graph/utils/type_utils.h" #include "graph/utils/type_utils.h"
#include "iostream"
namespace ge { namespace ge {
namespace formats { namespace formats {
namespace { namespace {
@@ -304,7 +303,7 @@ Status TransFormatHwcnToFzWithGroups(const TransArgs &args, TransResult &result,
return ACL_ERROR_GE_MEMORY_ALLOCATION;); return ACL_ERROR_GE_MEMORY_ALLOCATION;);
ret = memset_s(dst.get(), size_output_data, 0, size_output_data); ret = memset_s(dst.get(), size_output_data, 0, size_output_data);
if (ret != EOK) { if (ret != EOK) {
GELOGE(ACL_ERROR_GE_MEMORY_OPERATE_FAILED, "Failed to operate the dst memory, ret %d", ret);
GELOGE(ACL_ERROR_GE_MEMORY_OPERATE_FAILED, "Failed to operate the dst memory, ret is %d", ret);
return ACL_ERROR_GE_MEMORY_OPERATE_FAILED; return ACL_ERROR_GE_MEMORY_OPERATE_FAILED;
} }
for (int64_t g = 0; g < groups; g++) { for (int64_t g = 0; g < groups; g++) {


Loading…
Cancel
Save