Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit d7bc851

Browse files
committed
refactor test suite
1 parent 41cf9ec commit d7bc851

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ ctest --test-dir build
221221

222222
### Advanced optimisations
223223

224-
**Compiler optimisations** (Release builds): Link-Time Optimisation (LTO), aggressive inlining, constant folding, constant merging, symbol visibility optimization. All enabled by default with `-DCMAKE_BUILD_TYPE=Release`.
224+
**Compiler optimisations** (Release builds): Link-Time Optimisation (LTO), aggressive inlining, constant folding, constant merging, symbol visibility optimisation. All enabled by default with `-DCMAKE_BUILD_TYPE=Release`.
225225

226226
**Architecture-specific builds**: For maximum performance on your specific CPU, build with native architecture optimisations:
227227

@@ -234,8 +234,6 @@ This enables CPU-specific instructions (AVX2, AVX-512, etc.) for your exact proc
234234

235235
**Benchmarking**: Comprehensive benchmark suite available. Build with `-DLIBSQLGLOT_BUILD_BENCHMARKS=ON` to measure performance on your workload.
236236

237-
See `docs/OPTIMIZATION_STRATEGY.md` for profiling tools, per-file optimization levels, and advanced techniques like Profile-Guided Optimistion (useful only for specialized, consistent workloads).
238-
239237
## Architecture
240238

241239
Header-only design: you only pay for what you use. 19 header files, no `.cpp`. See `include/libsqlglot/` for the full layout. Core files: `parser.h` (4203 lines), `generator.h` (2149), `expression.h` (1385, 115 expression types). Entry point is `transpiler.h` (86 lines).

0 commit comments

Comments
 (0)