Skip to content

p-ranav/lc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lc is a fast multi-threaded line counter.

Getting Started

Build and install lc

mkdir build
cd build
cmake ..
make
sudo make install

Basic usage:

$ lc some_large_file.csv
20973777 some_large_file.csv

Performance Benchmark

  • This performance benchmark was run on an NVIDIA DGX-1 system.
  • Use utils/make_large_file.py to create files of desired size.
  • Benchmark using the hyperfine command-line benchmarking tool.
  • For large files, this line counter can be 2-10 times faster than wc -l depending on compute resources.
File size Lines wc -l <file> lc <file>
500 MB 2047277 116.8 ms 34.5 ms
1 GB 4192675 243.0 ms 60.9 ms
5 GB 20969987 1.160 s 200.5 ms
25 GB 104839424 6.162 s 738.8 ms
51 GB 209706969 13.117 s 1.461 s
100 GB 209706969 27.279 s 3.597 s

About

Fast multi-threaded line counter in Modern C++ (2-10x faster than `wc -l` for large files)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages