entrypoint.hpp 537 B

123456789101112131415161718192021
  1. #ifndef ENTRY_FPGA_H
  2. #define ENTRY_FPGA_H
  3. #include "tensorflow/core/framework/op.h"
  4. #include "tensorflow/core/framework/shape_inference.h"
  5. #include "tensorflow/core/framework/function.h"
  6. #include "tensorflow/core/util/tensor_format.h"
  7. #include "tensorflow/core/lib/math/math_util.h"
  8. #include "conv2D.hpp"
  9. #include "dummyOp.hpp"
  10. #include "dummyBigOp.hpp"
  11. #include "../lib/mlfpga/include/connectionManager.hpp"
  12. namespace tf_lib {
  13. void __attribute__ ((constructor)) init(void);
  14. extern ConnectionManager connectionManager;
  15. }
  16. #endif