summaryrefslogtreecommitdiff
path: root/libc/benchmarks/LibcMemoryBenchmarkTest.cpp
AgeCommit message (Collapse)Author
2025-09-24[libc][NFC] Remove usage of the C keyword `I`. (#160567)lntue
2022-12-11[libc][Obvious] Fix memory function benchmarks after removal of None.Siva Chandra Reddy
2020-12-17[libc] revamp memory function benchmarkGuillaume Chatelet
The benchmarking infrastructure can now run in two modes: - Sweep Mode: which generates a ramp of size values (same as before), - Distribution Mode: allows the user to select a distribution for the size paramater that is representative from production. The analysis tool has also been updated to handle both modes. Differential Revision: https://reviews.llvm.org/D93210
2020-06-17[libc][benchmarks] Link the memory benchmark exes to functions from LLVM libc.Siva Chandra Reddy
Summary: To get the target order correct, the benchmarks directory has been moved one level higher. Previously, it was living in the utils directory. The utils directory is a collection of utils which are to be used by the tests and implementations. However, benchmarks *use* the implementations. So, moving it out of utils helps us setup proper target level dependencies. Reviewers: gchatelet Differential Revision: https://reviews.llvm.org/D81910