-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,17 @@ | ||
# ubt_caffe | ||
### ubt_caffe | ||
|
||
|
||
### Build on Linux | ||
|
||
Install OpenBLAS and protobuf library through system package manager. Or you can compile OpenBLAS and protobuf by yourself. | ||
|
||
``` | ||
$ sudo apt install libopenblas-dev libprotobuf-dev protobuf-compiler | ||
$ ./generatepb.sh | ||
$ mkdir build | ||
$ cd build | ||
$ cmake .. -DCMAKE_BUILD_TYPE=Release | ||
$ make -j4 | ||
``` | ||
|
||
If you don't use Ubuntu, then you may need to install OpenBLAS and protobuf through your system package manager if any. |