mlboydaisuke commited on
Commit
b43bedf
·
verified ·
1 Parent(s): 5d3bf67

Card: add a measured Performance table (Pixel 8a, benchmark_model GPU+CPU), naming the runtime for each row

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -90,6 +90,18 @@ loc[np.argmax(o, 0) == 200] = 0 # 0 = no lane
90
  Converted with **litert-torch** (`build_ufld.py`): loads the ResNet18 CULane weights and
91
  exports the row-classification graph.
92
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  ## License
94
 
95
  MIT (Ultra-Fast-Lane-Detection / cfzd). Trained on CULane.
 
90
  Converted with **litert-torch** (`build_ufld.py`): loads the ResNet18 CULane weights and
91
  exports the row-classification graph.
92
 
93
+ ## Performance
94
+
95
+ Measured on a **Pixel 8a** (Tensor G3, Android 16) with the standard TFLite [`benchmark_model`](https://ai.google.dev/edge/litert/models/measurement) tool — 10 warm-up runs then 50 timed runs, reported as the tool's mean.
96
+
97
+ | Runtime | Backend | Graph on GPU | Latency |
98
+ |---|---|---|---|
99
+ | LiteRT `CompiledModel` (`LITERT_CL`) | GPU | 41 / 41 | ~20 ms |
100
+ | TFLite `benchmark_model` (`TfLiteGpuDelegateV2`) | GPU (OpenCL) | 41 / 41 | 25.3 ms |
101
+ | TFLite `benchmark_model` | CPU (XNNPACK, 4 threads) | — | 252.3 ms |
102
+
103
+ **The two GPU rows are different runtimes, not a contradiction.** The `LITERT_CL` figure is the one recorded when this model shipped, taken through LiteRT's own `CompiledModel` accelerator — the path the Kotlin sample app and the LiteRT API use. The `TfLiteGpuDelegateV2` figure is the classic TFLite OpenCL delegate, measured with a tool anyone can download and re-run. They agree on how much of the graph the GPU takes; they disagree on speed, and the classic delegate is the slower of the two here. Read the `TfLiteGpuDelegateV2` row as a reproducible floor, not as this model's speed on LiteRT.
104
+
105
  ## License
106
 
107
  MIT (Ultra-Fast-Lane-Detection / cfzd). Trained on CULane.