├── .github └── workflows │ └── test.yml ├── CITATION.cff ├── LICENSE ├── Makefile ├── README.md ├── docker ├── .Dockerfiles │ ├── .gitignore │ ├── 2.11.0 │ │ ├── bashrc │ │ └── dockerfiles │ │ │ ├── arm64v8 │ │ │ ├── devel-cpu-arm64v8.Dockerfile │ │ │ └── devel-gpu-arm64v8.Dockerfile │ │ │ ├── devel-cpu-ubuntu20.Dockerfile │ │ │ ├── devel-cpu-ubuntu22.Dockerfile │ │ │ ├── devel-gpu+cu118-ubuntu20.Dockerfile │ │ │ └── devel-gpu+cu118-ubuntu22.Dockerfile │ ├── 2.11.1 │ │ ├── bashrc │ │ └── dockerfiles │ │ │ ├── arm64v8 │ │ │ └── devel-cpu-arm64v8.Dockerfile │ │ │ ├── devel-cpu.Dockerfile │ │ │ └── devel-gpu.Dockerfile │ ├── 2.12.0 │ │ ├── bashrc │ │ └── dockerfiles │ │ │ ├── arm64v8 │ │ │ └── devel-cpu-arm64v8.Dockerfile │ │ │ ├── devel-cpu.Dockerfile │ │ │ └── devel-gpu.Dockerfile │ ├── 2.12.1 │ │ ├── bashrc │ │ └── dockerfiles │ │ │ ├── arm64v8 │ │ │ └── devel-cpu-arm64v8.Dockerfile │ │ │ ├── devel-cpu.Dockerfile │ │ │ └── devel-gpu.Dockerfile │ └── 2.13.0 │ │ ├── bashrc │ │ └── dockerfiles │ │ ├── arm64v8 │ │ └── devel-cpu-arm64v8.Dockerfile │ │ ├── devel-cpu.Dockerfile │ │ └── devel-gpu.Dockerfile ├── .gitignore ├── DEBIAN │ └── control ├── Dockerfile ├── cmake │ └── TensorFlowConfig.cmake └── patch │ ├── 2.11.1 │ └── workspace2.bzl.patch │ ├── 2.12.0 │ └── workspace2.bzl.patch │ ├── 2.12.1 │ └── workspace2.bzl.patch │ └── 2.13.0 │ └── workspace2.bzl.patch ├── example ├── .gitignore ├── build-and-run-monolithic.sh ├── build-and-run.sh └── hello_tensorflow.cpp ├── libtensorflow-cc └── .gitignore ├── scripts ├── .common.sh ├── .versions.devel.sh ├── .versions.run.sh ├── 0-download-official-dockerfiles.sh ├── 1-build-official-devel-image.sh ├── 2-build-cpp-image.sh ├── 3-export-libtensorflow-cc.sh ├── 4-test-libtensorflow-cc.sh ├── 5-print-versions.sh └── 6-push-image.sh └── tensorflow-wheel └── .gitignore /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/README.md -------------------------------------------------------------------------------- /docker/.Dockerfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/.gitignore -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/bashrc -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/dockerfiles/arm64v8/devel-gpu-arm64v8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/dockerfiles/arm64v8/devel-gpu-arm64v8.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/dockerfiles/devel-cpu-ubuntu20.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/dockerfiles/devel-cpu-ubuntu20.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/dockerfiles/devel-cpu-ubuntu22.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/dockerfiles/devel-cpu-ubuntu22.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/dockerfiles/devel-gpu+cu118-ubuntu20.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/dockerfiles/devel-gpu+cu118-ubuntu20.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.0/dockerfiles/devel-gpu+cu118-ubuntu22.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.0/dockerfiles/devel-gpu+cu118-ubuntu22.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.1/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.1/bashrc -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.1/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.1/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.1/dockerfiles/devel-cpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.1/dockerfiles/devel-cpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.11.1/dockerfiles/devel-gpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.11.1/dockerfiles/devel-gpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.0/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.0/bashrc -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.0/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.0/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.0/dockerfiles/devel-cpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.0/dockerfiles/devel-cpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.0/dockerfiles/devel-gpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.0/dockerfiles/devel-gpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.1/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.1/bashrc -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.1/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.1/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.1/dockerfiles/devel-cpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.1/dockerfiles/devel-cpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.12.1/dockerfiles/devel-gpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.12.1/dockerfiles/devel-gpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.13.0/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.13.0/bashrc -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.13.0/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.13.0/dockerfiles/arm64v8/devel-cpu-arm64v8.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.13.0/dockerfiles/devel-cpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.13.0/dockerfiles/devel-cpu.Dockerfile -------------------------------------------------------------------------------- /docker/.Dockerfiles/2.13.0/dockerfiles/devel-gpu.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/.Dockerfiles/2.13.0/dockerfiles/devel-gpu.Dockerfile -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- 1 | .log/ -------------------------------------------------------------------------------- /docker/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/DEBIAN/control -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/cmake/TensorFlowConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/cmake/TensorFlowConfig.cmake -------------------------------------------------------------------------------- /docker/patch/2.11.1/workspace2.bzl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/patch/2.11.1/workspace2.bzl.patch -------------------------------------------------------------------------------- /docker/patch/2.12.0/workspace2.bzl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/patch/2.12.0/workspace2.bzl.patch -------------------------------------------------------------------------------- /docker/patch/2.12.1/workspace2.bzl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/patch/2.12.1/workspace2.bzl.patch -------------------------------------------------------------------------------- /docker/patch/2.13.0/workspace2.bzl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/docker/patch/2.13.0/workspace2.bzl.patch -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | hello_tensorflow -------------------------------------------------------------------------------- /example/build-and-run-monolithic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/example/build-and-run-monolithic.sh -------------------------------------------------------------------------------- /example/build-and-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/example/build-and-run.sh -------------------------------------------------------------------------------- /example/hello_tensorflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/example/hello_tensorflow.cpp -------------------------------------------------------------------------------- /libtensorflow-cc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /scripts/.common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/.common.sh -------------------------------------------------------------------------------- /scripts/.versions.devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/.versions.devel.sh -------------------------------------------------------------------------------- /scripts/.versions.run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/.versions.run.sh -------------------------------------------------------------------------------- /scripts/0-download-official-dockerfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/0-download-official-dockerfiles.sh -------------------------------------------------------------------------------- /scripts/1-build-official-devel-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/1-build-official-devel-image.sh -------------------------------------------------------------------------------- /scripts/2-build-cpp-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/2-build-cpp-image.sh -------------------------------------------------------------------------------- /scripts/3-export-libtensorflow-cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/3-export-libtensorflow-cc.sh -------------------------------------------------------------------------------- /scripts/4-test-libtensorflow-cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/4-test-libtensorflow-cc.sh -------------------------------------------------------------------------------- /scripts/5-print-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/5-print-versions.sh -------------------------------------------------------------------------------- /scripts/6-push-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ika-rwth-aachen/libtensorflow_cc/HEAD/scripts/6-push-image.sh -------------------------------------------------------------------------------- /tensorflow-wheel/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore --------------------------------------------------------------------------------