You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

conv_.cpp 2.0 kB

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. ███████╗██████╗ ██████╗ ███████╗ ███████╗███╗ ██╗ ██████╗ ██╗███╗ ██╗███████╗
  3. ██╔════╝██╔══██╗██╔════╝ ██╔════╝ ██╔════╝████╗ ██║██╔════╝ ██║████╗ ██║██╔════╝
  4. █████╗ ██║ ██║██║ ███╗█████╗ █████╗ ██╔██╗ ██║██║ ███╗██║██╔██╗ ██║█████╗
  5. ██╔══╝ ██║ ██║██║ ██║██╔══╝ ██╔══╝ ██║╚██╗██║██║ ██║██║██║╚██╗██║██╔══╝
  6. ███████╗██████╔╝╚██████╔╝███████╗ ███████╗██║ ╚████║╚██████╔╝██║██║ ╚████║███████╗
  7. ╚══════╝╚═════╝ ╚═════╝ ╚══════╝ ╚══════╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝╚══════╝
  8. Author:Edge
  9. Web:likedge.top
  10. Date:20200925
  11. */
  12. #include<iostream>
  13. #include<ctime>
  14. #include<string>
  15. #include <time.h>
  16. #include <math.h>
  17. #include <fstream>
  18. #include "./autodiff/node.h"
  19. #include"./matrix/matrix_def.h"
  20. #include"./matrix/matrix_pro.h"
  21. #include"./welcome/score_wel.cpp"
  22. #include"./logistic/logistic_def.h"
  23. #include"./file_pro/data_read.h"
  24. #include"./grad_edge/matrix_grad.h"
  25. using namespace std;
  26. clock_t start, stop;
  27. double duration;
  28. int main()
  29. {
  30. welcome();
  31. conv_test(CreateRandMat(5,6),3,4,1,2,0,0);
  32. return 0;
  33. }

Edge : 一个开源的科学计算引擎