OS/Orange PI
Orange Pi Pc Plus : TensorFlow 2.2.0 (armv7l) - C, C++ 라이브러리 설치
파란크리스마스
2020. 5. 24. 12:50
728x90
출처
리눅스 정보 확인
CPU 정보 확인
$ cat /proc/cpuinfo processor : 0 model name : ARMv7 Processor rev 5 (v7l) BogoMIPS : 22.85 Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x0 CPU part : 0xc07 CPU revision : 5 ... 생략 ... Hardware : Allwinner sun8i Family Revision : 0000 Serial : 02c000812exxxxxx
instruction set architecture (ISA)
$ uname -m armv7l
커널에 대한 정보
$ uname -a Linux orangepipcplus 5.4.35-sunxi #trunk SMP Thu Apr 23 18:06:21 CEST 2020 armv7l GNU/Linux
OS버전에 대한 정보
$ cat /etc/issue Armbian 20.02.1 Buster \l
논리 코어 수 확인
$ grep -c processor /proc/cpuinfo 4
TensorFlow C, C++ 라이브러리 설치
TensorFlow 라이브러리 다운로드
$ wget http://1.229.109.140:3562/tensorflow/tensorflow-2.2.0.armv7l/libtensorflow.tar.gz
TensorFlow 라이브러리 설치
$ sudo tar -C /usr/local -xzf libtensorflow.tar.gz
Linker 설정
$ sudo ldconfig
예제 hello.c
#include <stdio.h> #include <tensorflow/c/c_api.h> int main() { printf("TensorFlow C library version %s\n", TF_Version()); return 0; }
예제 컴파일
$ gcc hello.c -ltensorflow -o hello
예제 실행
$ ./hello TensorFlow C library version 2.2.0