From a21fb6284feed61770095d5611a037caa21e78d6 Mon Sep 17 00:00:00 2001
From: Florian Fischer <florian.fl.fischer@fau.de>
Date: Thu, 7 Apr 2022 13:47:29 +0200
Subject: [PATCH] add ripgrep using 24 workers

This matches the number of cores in a numa node on big03.
---
 eval.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/eval.py b/eval.py
index 5a8e39b..6a103fb 100755
--- a/eval.py
+++ b/eval.py
@@ -40,6 +40,9 @@ TARGETS = {
     'ripgrep-j96': {
         'cmd': 'rg -j 96 -l -F -uuu {NEEDLE} .'
     },
+    'ripgrep-j24': {
+        'cmd': 'rg -j 24 -l -F -uuu {NEEDLE} .'
+    },
     'fgrep': {
         'cmd': 'fgrep -r -l {NEEDLE} .'
     },
-- 
GitLab