benchtests: Move libmvec benchtest inputs to benchtests directory

This allows other targets to use the same inputs for their own libmvec
microbenchmarks without having to duplicate them in their own
subdirectory.
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
This commit is contained in:
Joe Ramsay 2023-03-24 12:10:10 +00:00 committed by Szabolcs Nagy
parent ecf8ae6704
commit e4d336f1ac
53 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ def parse_file(func_types):
func = func_types[-1]
try:
with open('../sysdeps/x86_64/fpu/libmvec-%s-inputs' % func) as f:
with open('../benchtests/libmvec/%s-inputs' % func) as f:
for line in f:
# Look for directives and parse it if found.
if line.startswith('##'):