-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cu
94 lines (66 loc) · 3.68 KB
/
main.cu
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <iostream>
#include <vector>
#include "lib.cuh"
#include <string>
int main(int argc, char* argv[]) {
// Название результирующего файла как argv
if (argc < 2) {
std::cerr << "Usage: " << argv[0] << " file.csv to write\n";
return 1;
}
std::string inputString = argv[1];
if (inputString.size() < 4 ||
(inputString.substr(inputString.size() - 4) != ".csv" &&
inputString.substr(inputString.size() - 4) != ".txt")) {
std::cerr << "Error: File must have a .csv or .txt extension!" << std::endl;
return 1;
}
std::ofstream outFile(inputString);
if (!outFile.is_open()) {
std::cerr << "Failed to open file for writing!" << std::endl;
return 1;
}
outFile.close();
// Задаем параметры для расчета
double transTime = 1000; // Время переходного процесса
double tMax = 2000; // Время моделирования после TT
double h = 0.01; // Шаг интегрирования
std::vector<double> X = {0.1, 0.1, 0}; // Начальное состояние
int coord = 0; // Координата для анализа
std::vector<double> params = {0, 0.2, 0.2, 5.7}; // Параметры модели (params[0] - коэффициент симметрии)
double startBin = -20; // Начало гистограммы
double endBin = 20; // Конец гистограммы
double stepBin = 0.01; // Шаг бинов гистограммы
// Параметры для linspace
double linspaceStartA = 0.1; // Начало диапазона параметра
double linspaceEndA = 0.35; // Конец диапазона параметра
int linspaceNumA = 200; // Количество точек параметра
int paramNumberA = 1; // Индекс параметра для анализа
double linspaceStartB = 0.1; // Начало диапазона параметра
double linspaceEndB = 0.2; // Конец диапазона параметра
int linspaceNumB = 200;
int paramNumberB = 2; // Индекс параметра для анализа
auto start = std::chrono::high_resolution_clock::now();
//Вызов функции histEntropyCUDA3D
std::vector<std::vector<double>> histEntropy3D = histEntropyCUDA3D(
transTime, tMax, h,
X, coord,
params, paramNumberA,paramNumberB,
startBin, endBin, stepBin,
linspaceStartA,linspaceEndA, linspaceNumA, linspaceStartB,linspaceEndB, linspaceNumB
);
writeToCSV(histEntropy3D,linspaceNumA,linspaceNumB,inputString);
// std::vector<double> histEntropy2D = histEntropyCUDA2D(
// transTime, tMax, h,
// X, coord,
// params, paramNumberA,
// startBin, endBin, stepBin,
// linspaceStartA,linspaceEndA, linspaceNumA
// );
// writeToCSV(histEntropy2D,linspaceNumA,inputString);
std::cout<<"End of gpu part\n";
auto stop = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> duration = stop - start;
std::cout << "Program execution time: " << duration.count() << " seconds" << std::endl;
return 0;
}