Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ziqilau committed Jun 10, 2015
1 parent 58f565b commit 24721bd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,19 @@ We support Google's Protobuf as input. Try data/getdata.cc to convert from userw
where the header indicates the number of ratings, and follows by user_id, item_id and rating in each line.

## Environment Requirment
* GCC 4.9 or higher
* GCC 4.9 or higher
```bash
tar zxf gcc-4.9.2.tar.gz;cd gcc-4.9.2;contrib/download_prerequisites;cd ..;mkdir buildc;cd buildc;../gcc-4.9.2/configure --disable-multilib;make -j 32;sudo make install;cd ..;
* Intel TBB
```
* Intel TBB
```bash
sudo apt-get install libtbb-dev
* Google Protobuf
```
* Google Protobuf
```bash
sudo apt-get install -y libprotobuf-dev; sudo apt-get install -y protobuf-compiler;
* Intel MKL
```
* Intel MKL


## Reference
Expand Down

0 comments on commit 24721bd

Please sign in to comment.