diff options
| author | Paul Duncan <pabs@pablotron.org> | 2021-10-22 03:58:33 -0400 | 
|---|---|---|
| committer | Paul Duncan <pabs@pablotron.org> | 2021-10-22 03:58:33 -0400 | 
| commit | 48f7b04c120d443354711bd384d5f961be0a8ea5 (patch) | |
| tree | 88bea4c678c7e0c067a43815a9a4ce2d11f6949e /data/tables | |
| parent | ebfd0cb40b6f1bdfb2a1974cf07963410a5966a8 (diff) | |
| download | pablotron.org-48f7b04c120d443354711bd384d5f961be0a8ea5.tar.xz pablotron.org-48f7b04c120d443354711bd384d5f961be0a8ea5.zip | |
add tensorflow times table
Diffstat (limited to 'data/tables')
| -rw-r--r-- | data/tables/tensorflow_on_pi/times.yaml | 35 | 
1 files changed, 35 insertions, 0 deletions
| diff --git a/data/tables/tensorflow_on_pi/times.yaml b/data/tables/tensorflow_on_pi/times.yaml new file mode 100644 index 0000000..17d107b --- /dev/null +++ b/data/tables/tensorflow_on_pi/times.yaml @@ -0,0 +1,35 @@ +--- +# table name +name: "Tensorflow Installation Time and Test Time by System" + +# table columns +cols: +  - id: "system" +    name: "System" +    tip: "System." +  - id: "package" +    name: "Package" +    tip: "Installation package." +  - id: "install_time" +    name: "Install Time" +    tip: "Total installation time." +    align: "right" +  - id: "test_time" +    name: "Test Time" +    tip: "Total time to run test." +    align: "right" + +# table rows +rows: +  - system: "[Raspberry Pi Zero W](https://www.raspberrypi.org/products/raspberry-pi-zero-w/ \"Raspberry Pi Zero W\")" +    package: "[Virtualenv/Pip](https://www.tensorflow.org/install/pip \"Install TensorFlow using Virtualenv and Pip\")" +    install_time: "\\>1 hour" +    test_time: "40 seconds" +  - system: "[Raspberry Pi 3 Model B+](https://www.raspberrypi.org/products/raspberry-pi-3-model-b-plus/ \"Raspberry Pi 3 Model B+\")" +    package: "[Virtualenv/Pip](https://www.tensorflow.org/install/pip \"Install TensorFlow using Virtualenv and Pip\")" +    install_time: "10 minutes" +    test_time: "10 seconds" +  - system: "[AMD ThreadRipper 1950X](https://www.amd.com/en/products/cpu/amd-ryzen-threadripper-1950x \"AMD Ryzen ThreadRipper 1950x\") ([KVM](https://www.linux-kvm.org/ \"Linux Kernel Virtual Machine\") VM, 8 cores)" +    package: "[Docker image](https://hub.docker.com/r/tensorflow/tensorflow/ \"TensorFlow Docker image\")" +    install_time: "**2 minutes**" +    test_time: "**1.8 seconds**" | 
