Browse Source

tttt

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

+ 4
- 3
ge/common/formats/format_transfers/format_transfer_fractal_z.cc View File

@@ -25,7 +25,7 @@
#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 {
@@ -519,7 +519,8 @@ Status FormatTransferFractalZ::TransFormat(const TransArgs &args, TransResult &r
return TransFormatNhwcToFz(args, result); return TransFormatNhwcToFz(args, result);
} }
if ((args.src_format == FORMAT_HWCN) && (GetPrimaryFormat(args.dst_format) == FORMAT_FRACTAL_Z)) { if ((args.src_format == FORMAT_HWCN) && (GetPrimaryFormat(args.dst_format) == FORMAT_FRACTAL_Z)) {
if (GetSubFormat(args.dst_format) >= 1) {
if (GetSubFormat(args.dst_format) > 1) {
std::cout<<"come in groups process"<<std::endl;
return TransFormatHwcnToFzWithGroups(args, result, GetSubFormat(args.dst_format)); return TransFormatHwcnToFzWithGroups(args, result, GetSubFormat(args.dst_format));
} }
return TransFormatHwcnToFz(args, result); return TransFormatHwcnToFz(args, result);
@@ -541,7 +542,7 @@ Status FormatTransferFractalZ::TransShape(Format src_format, const std::vector<i
return TransShapeNhwcToFz(src_shape, data_type, dst_shape); return TransShapeNhwcToFz(src_shape, data_type, dst_shape);
} }
if ((src_format == FORMAT_HWCN) && (GetPrimaryFormat(dst_format) == FORMAT_FRACTAL_Z)) { if ((src_format == FORMAT_HWCN) && (GetPrimaryFormat(dst_format) == FORMAT_FRACTAL_Z)) {
if (GetSubFormat(dst_format) >= 1) {
if (GetSubFormat(dst_format) > 1) {
return TransShapeHwcnToFzWithGroups(src_shape, data_type, dst_shape, GetSubFormat(dst_format)); return TransShapeHwcnToFzWithGroups(src_shape, data_type, dst_shape, GetSubFormat(dst_format));
} }
return TransShapeHwcnToFz(src_shape, data_type, dst_shape); return TransShapeHwcnToFz(src_shape, data_type, dst_shape);


Loading…
Cancel
Save