Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.19 12 lines 243 B view raw
1#!/bin/bash 2# SPDX-License-Identifier: GPL-2.0 3 4source ./benchs/run_common.sh 5 6set -eufo pipefail 7 8for s in 1 8 64 512 2048 4095; do 9 for b in no-helper helper; do 10 summarize ${b}-${s} "$($RUN_BENCH --cmp-str-len=$s strncmp-${b})" 11 done 12done