ENH: patchCloud: return pTraits<Type>::max for unfound points
[OpenFOAM-1.7.x.git] / applications / test / maxMem / maxMem.C
blob590c542ee95d62b6ea404ba5cc2aa62f7feb7dce
1 #include <iostream>
2 #include <stdlib.h>
3 using namespace std;
5 int main(int argc, char *argv[])
7     if (argc != 2)
8     {
9         cerr << "Usage: " << argv[0] << " <number of Mb per chunk>\n";
10         exit(1);
11     }
13     int nBytes = (1024U*1024U)*atoi(argv[1]);
15     char *cPtr;
17     for (unsigned i=1;; i++)
18     {
19         cPtr = new char[nBytes];
21         /*
22         for (int j=0; j<nBytes; j++)
23         {
24             cPtr[j] = 0;
25         }
26         */
28         cout << "allocated " << i*nBytes/(1024U*1024U) << " Mbytes" << endl;
29     }
31     return 0;