Alpy

BUILD

Aug 18th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. cc_binary(
  2. name = "cpp_api",
  3. srcs = ["cpp_api.cc"],
  4. deps = [
  5. ":conversion",
  6. ":prediction",
  7. ]
  8. )
  9.  
  10.  
  11. cc_library(
  12. name = "conversion",
  13. srcs = ["conversion.cc"],
  14. hdrs = ["conversion.h"],
  15. deps = [
  16. "//tensorflow/core:tensorflow",
  17. "@opencv//:opencv",
  18. "//third_party/eigen3",
  19. ]
  20. )
  21.  
  22. cc_library(
  23. name = "prediction",
  24. srcs = ["prediction.cc"],
  25. hdrs = ["prediction.h"],
  26. deps = [
  27. ":conversion",
  28. "//tensorflow/core:tensorflow",
  29. ]
  30. )
Add Comment
Please, Sign In to add comment