├── .gitignore ├── .whitesource ├── LICENSE ├── README.md ├── benchmark_coreml_infer.py ├── burn.py ├── bw_benchmark.py ├── conv_benchmark.py ├── coreml_conv.py ├── coreml_matmul.py ├── gpu_tflops_plot.jpg ├── infer_plot.ipynb ├── model_library.py ├── tflops_sweep.py ├── train_benchmark.py └── unified_mem_benchmark.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/.whitesource -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/README.md -------------------------------------------------------------------------------- /benchmark_coreml_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/benchmark_coreml_infer.py -------------------------------------------------------------------------------- /burn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/burn.py -------------------------------------------------------------------------------- /bw_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/bw_benchmark.py -------------------------------------------------------------------------------- /conv_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/conv_benchmark.py -------------------------------------------------------------------------------- /coreml_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/coreml_conv.py -------------------------------------------------------------------------------- /coreml_matmul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/coreml_matmul.py -------------------------------------------------------------------------------- /gpu_tflops_plot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/gpu_tflops_plot.jpg -------------------------------------------------------------------------------- /infer_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/infer_plot.ipynb -------------------------------------------------------------------------------- /model_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/model_library.py -------------------------------------------------------------------------------- /tflops_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/tflops_sweep.py -------------------------------------------------------------------------------- /train_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/train_benchmark.py -------------------------------------------------------------------------------- /unified_mem_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlkh/tf-metal-experiments/HEAD/unified_mem_benchmark.py --------------------------------------------------------------------------------