]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/sort/example/rightshiftsample.cpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / sort / example / rightshiftsample.cpp
index 91cebc31c78488e18c28b6d58403762ffe816a5d..33da64f73f7ead2e792871342616a1dea1e0d9ca 100644 (file)
@@ -1,98 +1,98 @@
-//! \brief Integer sort with a rightshift functor sorting example.\r
-//! \file\r
-//\r
-//  Copyright Steven Ross 2009-2014.\r
-//\r
-// Distributed under the Boost Software License, Version 1.0.\r
-//    (See accompanying file LICENSE_1_0.txt or copy at\r
-//          http://www.boost.org/LICENSE_1_0.txt)\r
-\r
-//  See http://www.boost.org/libs/sort for library home page.\r
-\r
-// Caution: this file contains Quickbook markup as well as code\r
-// and comments, don't change any of the special comment markups!\r
-\r
-#include <boost/sort/spreadsort/spreadsort.hpp>\r
-#include <time.h>\r
-#include <stdio.h>\r
-#include <stdlib.h>\r
-#include <algorithm>\r
-#include <vector>\r
-#include <string>\r
-#include <fstream>\r
-#include <iostream>\r
-using namespace boost::sort::spreadsort;\r
-\r
-#define DATA_TYPE int\r
-\r
-//[rightshift_int_functor\r
-struct rightshift {\r
-  inline int operator()(DATA_TYPE x, unsigned offset) { return x >> offset; }\r
-};\r
-//] [/rightshift_int_functor]\r
-\r
-//Pass in an argument to test std::sort\r
-int main(int argc, const char ** argv) {\r
-  size_t uCount,uSize=sizeof(DATA_TYPE);\r
-  bool stdSort = false;\r
-  unsigned loopCount = 1;\r
-  for (int u = 1; u < argc; ++u) {\r
-    if (std::string(argv[u]) == "-std")\r
-      stdSort = true;\r
-    else\r
-      loopCount = atoi(argv[u]);\r
-  }\r
-  std::ifstream input("input.txt", std::ios_base::in | std::ios_base::binary);\r
-  if (input.fail()) {\r
-    printf("input.txt could not be opened\n");\r
-    return 1;\r
-  }\r
-  double total = 0.0;\r
-  std::vector<DATA_TYPE> array;\r
-  input.seekg (0, std::ios_base::end);\r
-    size_t length = input.tellg();\r
-  uCount = length/uSize;\r
-  //Run multiple loops, if requested\r
-  for (unsigned u = 0; u < loopCount; ++u) {\r
-    input.seekg (0, std::ios_base::beg);\r
-    //Conversion to a vector\r
-    array.resize(uCount);\r
-    unsigned v = 0;\r
-    while (input.good() && v < uCount)\r
-      input.read(reinterpret_cast<char *>(&(array[v++])), uSize );\r
-    if (v < uCount)\r
-      array.resize(v);\r
-    clock_t start, end;\r
-    double elapsed;\r
-    start = clock();\r
-    if (stdSort) {\r
-      std::sort(array.begin(), array.end());\r
-    } else {\r
-//[rightshift_1\r
-      integer_sort(array.begin(), array.end(), rightshift());\r
-//] [/rightshift_1]\r
-    }\r
-    end = clock();\r
-    elapsed = static_cast<double>(end - start) ;\r
-    std::ofstream ofile;\r
-    if (stdSort)\r
-      ofile.open("standard_sort_out.txt", std::ios_base::out |\r
-                 std::ios_base::binary | std::ios_base::trunc);\r
-    else\r
-      ofile.open("boost_sort_out.txt", std::ios_base::out |\r
-                 std::ios_base::binary | std::ios_base::trunc);\r
-    if (ofile.good()) {\r
-      for (unsigned v = 0; v < array.size(); ++v) {\r
-        ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) );\r
-      }\r
-      ofile.close();\r
-    }\r
-    total += elapsed;\r
-    array.clear();\r
-  }\r
-  if (stdSort)\r
-    printf("std::sort elapsed time %f\n", total / CLOCKS_PER_SEC);\r
-  else\r
-    printf("spreadsort elapsed time %f\n", total / CLOCKS_PER_SEC);\r
-  return 0;\r
-}\r
+//! \brief Integer sort with a rightshift functor sorting example.
+//! \file
+//
+//  Copyright Steven Ross 2009-2014.
+//
+// Distributed under the Boost Software License, Version 1.0.
+//    (See accompanying file LICENSE_1_0.txt or copy at
+//          http://www.boost.org/LICENSE_1_0.txt)
+
+//  See http://www.boost.org/libs/sort for library home page.
+
+// Caution: this file contains Quickbook markup as well as code
+// and comments, don't change any of the special comment markups!
+
+#include <boost/sort/spreadsort/spreadsort.hpp>
+#include <time.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <algorithm>
+#include <vector>
+#include <string>
+#include <fstream>
+#include <iostream>
+using namespace boost::sort::spreadsort;
+
+#define DATA_TYPE int
+
+//[rightshift_int_functor
+struct rightshift {
+  inline int operator()(DATA_TYPE x, unsigned offset) { return x >> offset; }
+};
+//] [/rightshift_int_functor]
+
+//Pass in an argument to test std::sort
+int main(int argc, const char ** argv) {
+  size_t uCount,uSize=sizeof(DATA_TYPE);
+  bool stdSort = false;
+  unsigned loopCount = 1;
+  for (int u = 1; u < argc; ++u) {
+    if (std::string(argv[u]) == "-std")
+      stdSort = true;
+    else
+      loopCount = atoi(argv[u]);
+  }
+  std::ifstream input("input.txt", std::ios_base::in | std::ios_base::binary);
+  if (input.fail()) {
+    printf("input.txt could not be opened\n");
+    return 1;
+  }
+  double total = 0.0;
+  std::vector<DATA_TYPE> array;
+  input.seekg (0, std::ios_base::end);
+    size_t length = input.tellg();
+  uCount = length/uSize;
+  //Run multiple loops, if requested
+  for (unsigned u = 0; u < loopCount; ++u) {
+    input.seekg (0, std::ios_base::beg);
+    //Conversion to a vector
+    array.resize(uCount);
+    unsigned v = 0;
+    while (input.good() && v < uCount)
+      input.read(reinterpret_cast<char *>(&(array[v++])), uSize );
+    if (v < uCount)
+      array.resize(v);
+    clock_t start, end;
+    double elapsed;
+    start = clock();
+    if (stdSort) {
+      std::sort(array.begin(), array.end());
+    } else {
+//[rightshift_1
+      integer_sort(array.begin(), array.end(), rightshift());
+//] [/rightshift_1]
+    }
+    end = clock();
+    elapsed = static_cast<double>(end - start) ;
+    std::ofstream ofile;
+    if (stdSort)
+      ofile.open("standard_sort_out.txt", std::ios_base::out |
+                 std::ios_base::binary | std::ios_base::trunc);
+    else
+      ofile.open("boost_sort_out.txt", std::ios_base::out |
+                 std::ios_base::binary | std::ios_base::trunc);
+    if (ofile.good()) {
+      for (unsigned v = 0; v < array.size(); ++v) {
+        ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) );
+      }
+      ofile.close();
+    }
+    total += elapsed;
+    array.clear();
+  }
+  if (stdSort)
+    printf("std::sort elapsed time %f\n", total / CLOCKS_PER_SEC);
+  else
+    printf("spreadsort elapsed time %f\n", total / CLOCKS_PER_SEC);
+  return 0;
+}