Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 778 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 778 Bytes

Latte

Build Latte

A mini deeplearning inference framework inspired by Caffe

Highlight

Compared with Caffe, Latte has the following features:

  • Only support forward computation for inference
  • Using modern CMake based build system
  • Managing third-party libraries using CMake
  • Simplify dependencies, remove boost, etc.

Dependencies

  • GCC
  • CUDA
  • cuDNN
  • CMake >= 3.18

Build from source

  1. Build docker development image
docker build -t latte:dev -f docker/Dockerfile .
  1. Build
cmake -S . -B build -G Ninja
cmake --build build