-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwithin_host_test.cuh
More file actions
45 lines (36 loc) · 890 Bytes
/
within_host_test.cuh
File metadata and controls
45 lines (36 loc) · 890 Bytes
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
#pragma once
#include <iostream>
#include <curand.h>
#include <curand_kernel.h>
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
#include <thrust/system_error.h>
#include <thrust/system/cuda/error.h>
#include <sstream>
#include <algorithm>
#include <random>
#include <chrono>
#include <iomanip>
#include <string>
#include <map>
#include <string>
#include <vector>
using namespace std;
class within_host_test
{
private:
string full_Reference_genome;
string reference_Genome_header;
int genome_Size;
/**
* @param tot_Blocks defines number of GPU blocks that are available
**/
int tot_Blocks;
/**
* @param tot_ThreadsperBlock defines number of threads that are available per GPU block.
**/
int tot_ThreadsperBlock;
public:
within_host_test(int cuda_Device_ID, string reference_Genome_location);
void ingress();
};