Skip to content

Commit 0f9bd7e

Browse files
authored
Add instructions to determine supported flags
1 parent f97b8bb commit 0f9bd7e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ All the binaries were compiled by passing `--config=opt` to bazel and setting
2020
| 2.2.0 | CPU | Ubuntu 18.04 | 7.5.0 | 3.7.7 | FMA, AVX, AVX2, SSE4.1, SSE4.2 | [Download](https://github.com/lakshayg/tensorflow-build/releases/download/tf2.2.0-py3.7-ubuntu18.04/tensorflow-2.2.0-cp37-cp37m-linux_x86_64.whl) |
2121
| 2.1.0 | CPU | Ubuntu 16.04 | 5.4.0 | 3.5.2 | FMA, AVX, AVX2, SSE4.1, SSE4.2 | [Download](https://github.com/lakshayg/tensorflow-build-archived/releases/download/tf-2.1.0-py35-ubuntu1604/tensorflow-2.1.0-cp35-cp35m-linux_x86_64.whl) |
2222

23+
**What flags are supported by my CPU?**
24+
25+
To check the instruction sets supported by your CPU, check the output of the following commands:
26+
27+
```
28+
# macOS
29+
sysctl -a | grep "machdep.cpu.*features:"
30+
31+
# Linux
32+
cat /proc/cpuinfo | grep flags
33+
```
34+
2335
---
2436

2537
If you find this project useful, _consider donating whatever amount you

0 commit comments

Comments
 (0)