op_tester_config.h 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2016 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 <istream>
Y
Yiqun Liu 已提交
18
#include <sstream>
19
#include <string>
20
#include <unordered_map>
21 22 23 24 25 26 27 28 29 30
#include <vector>

namespace paddle {
namespace operators {
namespace benchmark {

struct OpInputConfig {
  OpInputConfig() {}
  explicit OpInputConfig(std::istream& is);

Y
Yiqun Liu 已提交
31 32
  void ParseDType(std::istream& is);
  void ParseInitializer(std::istream& is);
33 34 35
  void ParseDims(std::istream& is);
  void ParseLoD(std::istream& is);

36
  std::string name;
Y
Yiqun Liu 已提交
37 38
  std::string dtype{"fp32"};  // int32/int, int64/long, fp32/float, fp64/double
  std::string initializer{"random"};  // random, natural
39
  std::vector<int64_t> dims;
40
  std::vector<std::vector<size_t>> lod;
41 42 43 44 45
};

struct OpTesterConfig {
  OpTesterConfig() {}
  explicit OpTesterConfig(const std::string& filename);
46 47 48 49

  bool Init(std::istream& is);

  bool ParseAttrs(std::istream& is);
50 51 52 53 54

  const OpInputConfig* GetInput(const std::string& name);

  std::string op_type;
  std::vector<OpInputConfig> inputs;
55
  std::unordered_map<std::string, std::string> attrs;
56 57 58 59 60 61 62
  int device_id{-1};  // CPU: -1
  int repeat{1};
  int profile{0};
  int print_debug_string{0};
  double runtime{0.0};
};

Y
Yiqun Liu 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
static bool Has(const std::vector<std::string>& vec, const std::string& item) {
  for (size_t i = 0; i < vec.size(); ++i) {
    if (vec[i] == item) {
      return true;
    }
  }
  return false;
}

template <typename T>
T StringTo(const std::string& str) {
  std::istringstream is(str);
  T value;
  is >> value;
  return value;
}

80 81 82
}  // namespace benchmark
}  // namespace operators
}  // namespace paddle