Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
#include "DataFormats/Math/interface/approx_atan2.h"
#include "DataFormats/Math/interface/deltaPhi.h"

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <cassert>

#include "rdtscp.h"

namespace {
  template <typename T>
  inline T toPhi(T phi) {
    return reco::reducePhiRange(phi);
  }

  template <typename T>
  inline T deltaPhi(T phi1, T phi2) {
    return reco::reducePhiRange(phi1 - phi2);
  }

  inline bool phiLess(float x, float y) {
    auto ix = phi2int(toPhi(x));
    auto iy = phi2int(toPhi(y));

    return (ix - iy) < 0;
  }

}  // namespace

template <>
float unsafe_atan2f<0>(float, float) {
  return 1.f;
}
template <>
float unsafe_atan2f<99>(float y, float x) {
  return std::atan2(y, x);
}
template <>
int unsafe_atan2i<0>(float, float) {
  return 1;
}
template <>
int unsafe_atan2i<99>(float y, float x) {
  return phi2int(std::atan2(y, x));
}

template <int DEGREE>
void diff() {
  float mdiff = 0;
  int idiff = 0;
  constexpr float xmin = -100.001;  // avoid 0
  constexpr float incr = 0.04;
  constexpr int N = 2. * std::abs(xmin) / incr;
  auto y = xmin;
  for (int i = 0; i < N; ++i) {
    auto x = xmin;
    for (int i = 0; i < N; ++i) {
      auto approx = unsafe_atan2f<DEGREE>(y, x);
      auto iapprox = unsafe_atan2i<DEGREE>(y, x);
      auto std = std::atan2(y, x);
      mdiff = std::max(std::abs(std - approx), mdiff);
      idiff = std::max(std::abs(phi2int(std) - iapprox), idiff);
      x += incr;
    }
    y += incr;
  }

  std::cout << "for degree " << DEGREE << " max diff is " << mdiff << ' ' << idiff << ' ' << int2phi(idiff)
            << std::endl;
}

template <int DEGREE>
void speedf() {
  if (!has_rdtscp())
    return;
  long long t = -rdtsc();
  float approx = 0;
  constexpr float xmin = -400.001;  // avoid 0
  constexpr float incr = 0.02;
  constexpr int N = 2. * std::abs(xmin) / incr;
  auto y = xmin;
  for (int i = 0; i < N; ++i) {
    auto x = xmin;
    for (int i = 0; i < N; ++i) {
      approx += unsafe_atan2f<DEGREE>(y, x);
      x += incr;
    }
    y += incr;
  }
  t += rdtsc();

  std::cout << "f for degree " << DEGREE << " clock is " << t << " " << approx << std::endl;
}

template <int DEGREE>
void speeds() {
  if (!has_rdtscp())
    return;
  long long t = -rdtsc();
  float approx = 0;
  constexpr float xmin = -400.001;  // avoid 0
  constexpr float incr = 0.02;
  constexpr int N = 2. * std::abs(xmin) / incr;
  auto y = xmin;
  for (int i = 0; i < N; ++i) {
    auto x = xmin;
    for (int i = 0; i < N; ++i) {
      approx += safe_atan2f<DEGREE>(y, x);
      x += incr;
    }
    y += incr;
  }
  t += rdtsc();

  std::cout << "s for degree " << DEGREE << " clock is " << t << " " << approx << std::endl;
}

template <int DEGREE>
void speedi() {
  if (!has_rdtscp())
    return;
  long long t = -rdtsc();
  int approx = 0;
  constexpr float xmin = -400.001;  // avoid 0
  constexpr float incr = 0.02;
  constexpr int N = 2. * std::abs(xmin) / incr;
  auto y = xmin;
  for (int i = 0; i < N; ++i) {
    auto x = xmin;
    for (int i = 0; i < N; ++i) {
      approx += unsafe_atan2i<DEGREE>(y, x);
      x += incr;
    }
    y += incr;
  }
  t += rdtsc();

  std::cout << "i for degree " << DEGREE << " clock is " << t << " " << approx << std::endl;
}

void testIntPhi() {
  constexpr long long maxint = (long long)(std::numeric_limits<int>::max()) + 1LL;
  constexpr int pi2 = int(maxint / 2LL);
  constexpr int pi4 = int(maxint / 4LL);
  constexpr int pi34 = int(3LL * maxint / 4LL);

  std::cout << "pi,  pi2,  pi4, p34 " << maxint << ' ' << pi2 << ' ' << pi4 << ' ' << pi34 << ' ' << pi2 + pi4 << '\n';
  std::cout << "Maximum value for int: " << std::numeric_limits<int>::max() << '\n';
  std::cout << "Maximum value for int+1 as LL: " << (long long)(std::numeric_limits<int>::max()) + 1LL << std::endl;

  std::cout << "Maximum value for short: " << std::numeric_limits<short>::max() << '\n';
  std::cout << "Maximum value for short+1 as int: " << (int)(std::numeric_limits<short>::max()) + 1 << std::endl;

  auto d = float(M_PI) - std::nextafter(float(M_PI), 0.f);
  std::cout << "abs res at pi for float " << d << ' ' << phi2int(d) << std::endl;
  std::cout << "abs res at for int " << int2dphi(1) << std::endl;
  std::cout << "abs res at for short " << short2phi(1) << std::endl;

  assert(phiLess(0.f, 2.f));
  assert(phiLess(6.f, 0.f));
  assert(phiLess(3.2f, 0.f));
  assert(phiLess(3.0f, 3.2f));

  assert(phiLess(-0.3f, 0.f));
  assert(phiLess(-0.3f, 0.1f));
  assert(phiLess(-3.0f, 0.f));
  assert(phiLess(3.0f, -3.0f));
  assert(phiLess(0.f, -3.4f));

  // go around the clock
  constexpr float eps = 1.e-5;
  auto ok = [](float a, float b) { assert(std::abs(a - b) < eps); };
  float phi1 = -7.;
  while (phi1 < 8) {
    auto p1 = toPhi(phi1);
    auto ip1 = phi2int(p1);
    std::cout << "phi1 " << phi1 << ' ' << p1 << ' ' << ip1 << ' ' << int2phi(ip1) << std::endl;
    ok(p1, int2phi(ip1));
    float phi2 = -7.2;
    while (phi2 < 8) {
      auto p2 = toPhi(phi2);
      auto ip2 = phi2int(p2);
      std::cout << "phi2 " << phi2 << ' ' << deltaPhi(phi1, phi2) << ' ' << deltaPhi(phi2, phi1) << ' '
                << int2phi(ip1 - ip2) << ' ' << int2phi(ip2 - ip1) << ' ' << toPhi(phi2 + phi1) << ' '
                << int2phi(ip1 + ip2) << std::endl;
      ok(deltaPhi(phi1, phi2), int2phi(ip1 - ip2));
      ok(deltaPhi(phi2, phi1), int2phi(ip2 - ip1));
      ok(toPhi(phi2 + phi1), int2phi(ip1 + ip2));
      phi2 += 1;
    }

    phi1 += 1;
  }
}

int main() {
  constexpr float p2i = ((int)(std::numeric_limits<short>::max()) + 1) / M_PI;
  constexpr float i2p = M_PI / ((int)(std::numeric_limits<short>::max()) + 1);
  std::cout << std::hexfloat << "p2i i2p " << p2i << " " << i2p << std::defaultfloat << std::endl;

  std::cout << unsafe_atan2f<5>(0.f, 0.f) << " " << std::atan2(0., 0.) << std::endl;
  std::cout << unsafe_atan2f<5>(0.5f, 0.5f) << " " << std::atan2(0.5, 0.5) << std::endl;
  std::cout << unsafe_atan2f<5>(0.5f, -0.5f) << " " << std::atan2(0.5, -0.5) << std::endl;
  std::cout << unsafe_atan2f<5>(-0.5f, -0.5f) << " " << std::atan2(-0.5, -0.5) << std::endl;
  std::cout << unsafe_atan2f<5>(-0.5f, 0.5f) << " " << std::atan2(-0.5, 0.5) << std::endl;

  std::cout << safe_atan2f<15>(0.f, 0.f) << " " << std::atan2(0., 0.) << std::endl;
  std::cout << safe_atan2f<15>(0.5f, 0.5f) << " " << std::atan2(0.5, 0.5) << std::endl;
  std::cout << safe_atan2f<15>(0.5f, -0.5f) << " " << std::atan2(0.5, -0.5) << std::endl;
  std::cout << safe_atan2f<15>(-0.5f, -0.5f) << " " << std::atan2(-0.5, -0.5) << std::endl;
  std::cout << safe_atan2f<15>(-0.5f, 0.5f) << " " << std::atan2(-0.5, 0.5) << std::endl;

  testIntPhi();

  diff<3>();
  diff<5>();
  diff<7>();
  diff<9>();
  diff<11>();
  diff<13>();
  diff<15>();
  diff<99>();

  speedf<0>();
  speedf<3>();
  speedf<5>();
  speedf<7>();
  speedf<9>();
  speedf<11>();
  speedf<13>();
  speedf<15>();
  speedf<99>();

  speeds<5>();
  speeds<11>();
  speeds<15>();

  speedi<0>();
  speedi<3>();
  speedi<5>();
  speedi<7>();
  speedi<9>();
  speedi<11>();
  speedi<13>();
  speedi<99>();

  return 0;
}