Initial commit

This commit is contained in:
2026-07-03 16:55:08 +07:00
commit df9be324a3
39 changed files with 8930 additions and 0 deletions

13
tf3-main/README.md Normal file
View File

@@ -0,0 +1,13 @@
# Requirements:
- Ubuntu 20.04.6 LTS / 22.04 LTS
# Build tf3 project:
- Build and install tf3 library:
```
cd tf3
mkdir -p build
cd build
cmake .. -DBUILD_SHARED_LIBS=ON -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=/usr/local
make -j$(nproc)
make install
```