├── .gitignore ├── LICENSE.txt ├── README.rst ├── common_tools ├── download └── wait_for_server ├── curl ├── .gitignore ├── Makefile ├── README.md ├── curl.manifest.template └── test-docroot │ └── index.html ├── gcc ├── Makefile ├── README.md ├── gcc.manifest.template └── test_files │ ├── .gitignore │ ├── gzip.patch │ └── helloworld.c ├── iperf ├── .gitignore ├── Makefile ├── README.md └── iperf3.manifest.template ├── mongodb ├── .gitignore ├── Makefile ├── README.md ├── data │ └── db │ │ └── .gitkeep ├── mongod.manifest.template └── scripts │ ├── fetch.js │ └── insert.js ├── nodejs ├── .gitignore ├── Makefile ├── README.md ├── helloworld.js └── nodejs.manifest.template ├── openjdk ├── .gitignore ├── Makefile ├── MultiThreadMain.java ├── README.md └── java.manifest.template ├── openvino ├── .gitignore ├── Makefile ├── README.md └── benchmark_app.manifest.template ├── pytorch ├── .gitignore ├── Makefile ├── README.md ├── classes.txt ├── download-pretrained-model.py ├── input.jpg ├── pytorch.manifest.template └── pytorchexample.py ├── r ├── Makefile ├── R.manifest.template ├── README.md └── scripts │ ├── R-benchmark-25.R │ └── sample.r ├── scikit-learn-intelex ├── .gitignore ├── Makefile ├── README.md ├── run_tests.sh ├── scripts │ ├── download_dataset.py │ ├── kmeans_example.py │ └── kmeans_perf_eval.py └── sklearnex.manifest.template └── tensorflow-lite ├── .gitignore ├── Makefile ├── README.md └── label_image.manifest.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/README.rst -------------------------------------------------------------------------------- /common_tools/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/common_tools/download -------------------------------------------------------------------------------- /common_tools/wait_for_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/common_tools/wait_for_server -------------------------------------------------------------------------------- /curl/.gitignore: -------------------------------------------------------------------------------- 1 | /OUTPUT 2 | -------------------------------------------------------------------------------- /curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/curl/Makefile -------------------------------------------------------------------------------- /curl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/curl/README.md -------------------------------------------------------------------------------- /curl/curl.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/curl/curl.manifest.template -------------------------------------------------------------------------------- /curl/test-docroot/index.html: -------------------------------------------------------------------------------- 1 | 2 | Hello World! 3 | -------------------------------------------------------------------------------- /gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/gcc/Makefile -------------------------------------------------------------------------------- /gcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/gcc/README.md -------------------------------------------------------------------------------- /gcc/gcc.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/gcc/gcc.manifest.template -------------------------------------------------------------------------------- /gcc/test_files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/gcc/test_files/.gitignore -------------------------------------------------------------------------------- /gcc/test_files/gzip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/gcc/test_files/gzip.patch -------------------------------------------------------------------------------- /gcc/test_files/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/gcc/test_files/helloworld.c -------------------------------------------------------------------------------- /iperf/.gitignore: -------------------------------------------------------------------------------- 1 | /install/ 2 | /iperf/ 3 | /*.tar.gz 4 | -------------------------------------------------------------------------------- /iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/iperf/Makefile -------------------------------------------------------------------------------- /iperf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/iperf/README.md -------------------------------------------------------------------------------- /iperf/iperf3.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/iperf/iperf3.manifest.template -------------------------------------------------------------------------------- /mongodb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/mongodb/.gitignore -------------------------------------------------------------------------------- /mongodb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/mongodb/Makefile -------------------------------------------------------------------------------- /mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/mongodb/README.md -------------------------------------------------------------------------------- /mongodb/data/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongodb/mongod.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/mongodb/mongod.manifest.template -------------------------------------------------------------------------------- /mongodb/scripts/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/mongodb/scripts/fetch.js -------------------------------------------------------------------------------- /mongodb/scripts/insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/mongodb/scripts/insert.js -------------------------------------------------------------------------------- /nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | /OUTPUT 2 | -------------------------------------------------------------------------------- /nodejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/nodejs/Makefile -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/nodejs/README.md -------------------------------------------------------------------------------- /nodejs/helloworld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/nodejs/helloworld.js -------------------------------------------------------------------------------- /nodejs/nodejs.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/nodejs/nodejs.manifest.template -------------------------------------------------------------------------------- /openjdk/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | -------------------------------------------------------------------------------- /openjdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openjdk/Makefile -------------------------------------------------------------------------------- /openjdk/MultiThreadMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openjdk/MultiThreadMain.java -------------------------------------------------------------------------------- /openjdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openjdk/README.md -------------------------------------------------------------------------------- /openjdk/java.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openjdk/java.manifest.template -------------------------------------------------------------------------------- /openvino/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openvino/.gitignore -------------------------------------------------------------------------------- /openvino/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openvino/Makefile -------------------------------------------------------------------------------- /openvino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openvino/README.md -------------------------------------------------------------------------------- /openvino/benchmark_app.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/openvino/benchmark_app.manifest.template -------------------------------------------------------------------------------- /pytorch/.gitignore: -------------------------------------------------------------------------------- 1 | /*.pt 2 | /result.txt 3 | -------------------------------------------------------------------------------- /pytorch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/Makefile -------------------------------------------------------------------------------- /pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/README.md -------------------------------------------------------------------------------- /pytorch/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/classes.txt -------------------------------------------------------------------------------- /pytorch/download-pretrained-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/download-pretrained-model.py -------------------------------------------------------------------------------- /pytorch/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/input.jpg -------------------------------------------------------------------------------- /pytorch/pytorch.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/pytorch.manifest.template -------------------------------------------------------------------------------- /pytorch/pytorchexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/pytorch/pytorchexample.py -------------------------------------------------------------------------------- /r/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/r/Makefile -------------------------------------------------------------------------------- /r/R.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/r/R.manifest.template -------------------------------------------------------------------------------- /r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/r/README.md -------------------------------------------------------------------------------- /r/scripts/R-benchmark-25.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/r/scripts/R-benchmark-25.R -------------------------------------------------------------------------------- /r/scripts/sample.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/r/scripts/sample.r -------------------------------------------------------------------------------- /scikit-learn-intelex/.gitignore: -------------------------------------------------------------------------------- 1 | /data/ 2 | /OUTPUT 3 | -------------------------------------------------------------------------------- /scikit-learn-intelex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/Makefile -------------------------------------------------------------------------------- /scikit-learn-intelex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/README.md -------------------------------------------------------------------------------- /scikit-learn-intelex/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/run_tests.sh -------------------------------------------------------------------------------- /scikit-learn-intelex/scripts/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/scripts/download_dataset.py -------------------------------------------------------------------------------- /scikit-learn-intelex/scripts/kmeans_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/scripts/kmeans_example.py -------------------------------------------------------------------------------- /scikit-learn-intelex/scripts/kmeans_perf_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/scripts/kmeans_perf_eval.py -------------------------------------------------------------------------------- /scikit-learn-intelex/sklearnex.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/scikit-learn-intelex/sklearnex.manifest.template -------------------------------------------------------------------------------- /tensorflow-lite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/tensorflow-lite/.gitignore -------------------------------------------------------------------------------- /tensorflow-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/tensorflow-lite/Makefile -------------------------------------------------------------------------------- /tensorflow-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/tensorflow-lite/README.md -------------------------------------------------------------------------------- /tensorflow-lite/label_image.manifest.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramineproject/examples/HEAD/tensorflow-lite/label_image.manifest.template --------------------------------------------------------------------------------