File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 7
7
- cron : 0 20 * * *
8
8
jobs :
9
9
10
-
11
10
linux :
12
11
runs-on : ${{ matrix.config.os }}
13
12
strategy :
@@ -109,6 +108,29 @@ jobs:
109
108
${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp -I/usr/local/include -L/usr/local/lib `pkg-config --cflags --libs tesseract lept ` -pthread -std=c++11
110
109
./basicapitest
111
110
111
+ - name : Setup for Tesseract benchmark using image from issue 263 fifteen times in a list file
112
+ run : |
113
+ wget -O i263_speed.jpg https://cloud.githubusercontent.com/assets/9968625/13674495/ac261db4-e6ab-11e5-9b4a-ad91d5b4ff87.jpg
114
+ printf 'i263_speed.jpg\n%.0s' {1..15} > benchmarks.list
115
+ lscpu
116
+ free
117
+ tesseract -v
118
+
119
+ - name : Run Tesseract using image from issue 263 with tessdata_fast
120
+ run : |
121
+ time tesseract benchmarks.list - --tessdata-dir ../tessdata_fast > /dev/null 2>&1
122
+ echo "tessdata_fast - disable-openmp"
123
+
124
+ - name : Run Tesseract using image from issue 263 with tessdata_best
125
+ run : |
126
+ time tesseract benchmarks.list - --tessdata-dir ../tessdata_best > /dev/null 2>&1
127
+ echo "tessdata_best - disable-openmp"
128
+
129
+ - name : Run Tesseract using image from issue 263 with tessdata_fast
130
+ run : |
131
+ time tesseract benchmarks.list - --tessdata-dir ../tessdata > /dev/null 2>&1
132
+ echo "tessdata - disable-openmp"
133
+
112
134
- name : Display Compiler Version
113
135
run : |
114
136
${{ matrix.config.cxx }} --version
You can’t perform that action at this time.
0 commit comments