entrypoint.hpp 511 B

1234567891011121314151617181920
  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 "../lib/mlfpga/include/connectionManager.hpp"
  11. namespace tf_lib {
  12. void __attribute__ ((constructor)) init(void);
  13. extern ConnectionManager connectionManager;
  14. }
  15. #endif