-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
20 lines (17 loc) · 735 Bytes
/
main.cpp
File metadata and controls
20 lines (17 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "./Headers/Common.h"
// #include "./Tests/TestFloatNN0.h"
#include "./Tests/TestQuantArray0.h"
using namespace ApproxFlow;
using namespace std;
int main(int argc, char **argv) {
testMNIST("../Utils/LUT_HEAM.txt");
// testFashionMNIST("../Utils/LUT_HEAM.txt");
// testFashionMNIST("../Utils/SDLC.txt");
// testCIFAR10VGG("../Utils/exported.txt");
// testCIFAR10AlexNet("../Utils/trans2_level1_level4_gaus_lambt4200_2_10e9_9923.txt");
// testCIFAR10AlexNet("../Utils/LUT_HEAM.txt");
// testCIFAR10AlexNetExport("../Utils/exported.txt");
// testCIFAR10("../Utils/trans2_level1_level4_gaus_lambt4200_2_10e9_9923.txt");
// testCIFAR10("../Utils/exported.txt");
return 0;
}