tensor_formatter.h 1.7 KB
Newer Older
H
Huihuang Zheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License. */

#pragma once
#include <string>

H
hong 已提交
18
#include "paddle/phi/core/dense_tensor.h"
H
Huihuang Zheng 已提交
19

20
namespace phi {
21
class DenseTensor;
22
}  // namespace phi
W
wanghuancoder 已提交
23 24

namespace paddle {
H
hong 已提交
25
namespace funcs {
H
Huihuang Zheng 已提交
26 27 28 29 30

class TensorFormatter {
 public:
  TensorFormatter() {}

31
  std::string Format(const phi::DenseTensor& print_tensor,
H
Huihuang Zheng 已提交
32 33 34
                     const std::string& tensor_name = "",
                     const std::string& message = "");

35
  template <typename T>
36
  void FormatData(const phi::DenseTensor& print_tensor,
37 38
                  std::stringstream& log_stream);

39
  void Print(const phi::DenseTensor& print_tensor,
H
Huihuang Zheng 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
             const std::string& tensor_name = "",
             const std::string& message = "");

  void SetPrintTensorType(bool print_tensor_type);
  void SetPrintTensorShape(bool print_tensor_shape);
  void SetPrintTensorLod(bool print_tensor_lod);
  void SetPrintTensorLayout(bool print_tensor_layout);
  void SetSummarize(int64_t summarize);

 private:
  int64_t summarize_ = -1;
  bool print_tensor_type_ = true;
  bool print_tensor_shape_ = true;
  bool print_tensor_lod_ = true;
  bool print_tensor_layout_ = true;
};

H
hong 已提交
57
}  // namespace funcs
H
Huihuang Zheng 已提交
58
}  // namespace paddle