NVBIO
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
bwt_test.cpp
Go to the documentation of this file.
1 /*
2  * nvbio
3  * Copyright (c) 2011-2014, NVIDIA CORPORATION. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of the NVIDIA CORPORATION nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 // fmindex_test.cpp
29 //
30 
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <vector>
34 #include <algorithm>
35 #include <nvbio/basic/timer.h>
36 #include <nvbio/basic/dna.h>
38 #include <nvbio/fmindex/bwt.h>
39 
40 using namespace nvbio;
41 
42 int bwt_test()
43 {
44  fprintf(stderr, "bwt test... started\n");
45  const int32 LEN = 10000000;
46  const uint32 WORDS = (LEN+16)/16;
47 
48  const uint64 memory_footprint =
49  sizeof(uint32)*uint64(WORDS) +
50  sizeof(uint32)*uint64(LEN);
51 
52  fprintf(stderr, " arch : %lu bit\n", sizeof(void*)*8u);
53  fprintf(stderr, " length : %.2f M bps\n", float(LEN)/1.0e6f);
54  fprintf(stderr, " memory : %.1f MB\n", float(memory_footprint)/float(1024*1024));
55 
56  std::vector<int32> buffer( LEN+1 + WORDS, 0u );
57  int32* bwt_temp = &buffer[0];
58  uint32* base_stream = (uint32*)&buffer[0] + LEN+1;
59 
60  typedef PackedStream<uint32*,uint8,2,true> stream_type;
61  stream_type stream( base_stream );
62 
63  srand(0);
64  for (int32 i = 0; i < LEN; ++i)
65  {
66  const uint32 s = rand() % 4;
67  stream[i] = s;
68  }
69 
70  fprintf(stderr, " construction... started\n");
71 
72  Timer timer;
73  timer.start();
74 
75  gen_bwt( LEN, stream.begin(), &bwt_temp[0], stream.begin() );
76 
77  timer.stop();
78  fprintf(stderr, " construction... done: %um:%us\n", uint32(timer.seconds()/60), uint32(timer.seconds())%60);
79 
80  fprintf(stderr, "bwt test... done\n");
81  return 0;
82 }