perf_stl_saxpy.cpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //---------------------------------------------------------------------------//
  2. // Copyright (c) 2013-2014 Kyle Lutz <kyle.r.lutz@gmail.com>
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. // See http://boostorg.github.com/compute for more information.
  9. //---------------------------------------------------------------------------//
  10. #include <algorithm>
  11. #include <iostream>
  12. #include <vector>
  13. #include "perf.hpp"
  14. float rand_float()
  15. {
  16. return (float(rand()) / float(RAND_MAX)) * 1000.f;
  17. }
  18. // y <- alpha * x + y
  19. void serial_saxpy(size_t n, float alpha, const float *x, float *y)
  20. {
  21. for(size_t i = 0; i < n; i++){
  22. y[i] = alpha * x[i] + y[i];
  23. }
  24. }
  25. int main(int argc, char *argv[])
  26. {
  27. perf_parse_args(argc, argv);
  28. std::cout << "size: " << PERF_N << std::endl;
  29. float alpha = 2.5f;
  30. std::vector<float> host_x(PERF_N);
  31. std::vector<float> host_y(PERF_N);
  32. std::generate(host_x.begin(), host_x.end(), rand_float);
  33. std::generate(host_y.begin(), host_y.end(), rand_float);
  34. perf_timer t;
  35. for(size_t trial = 0; trial < PERF_TRIALS; trial++){
  36. t.start();
  37. serial_saxpy(PERF_N, alpha, &host_x[0], &host_y[0]);
  38. t.stop();
  39. }
  40. std::cout << "time: " << t.min_time() / 1e6 << " ms" << std::endl;
  41. return 0;
  42. }