entrypoint.hpp 736 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef ENTRY_FPGA_H
  2. #define ENTRY_FPGA_H
  3. #include <fstream>
  4. #include "json.hpp"
  5. #include "tensorflow/core/framework/op.h"
  6. #include "tensorflow/core/framework/shape_inference.h"
  7. #include "tensorflow/core/framework/function.h"
  8. #include "tensorflow/core/util/tensor_format.h"
  9. #include "tensorflow/core/lib/math/math_util.h"
  10. #include "conv2D_1.hpp"
  11. #include "conv2D_2.hpp"
  12. #include "conv2D_3.hpp"
  13. #include "conv2D_maxpool.hpp"
  14. #include "conv2D_maxpool_multi.hpp"
  15. #include "dummyOp.hpp"
  16. #include "dummyBigOp.hpp"
  17. #include "../lib/mlfpga/include/connectionManager.hpp"
  18. #include "helper.hpp"
  19. namespace tf_lib {
  20. void __attribute__ ((constructor)) construct(void);
  21. extern ConnectionManager connectionManager;
  22. void init();
  23. }
  24. #endif