Skip to content

Commit 590ff96

Browse files
author
Raghuveer Devulapalli
committed
Rename files: use hyphen instead of underscore
1 parent b745529 commit 590ff96

16 files changed

+13
-13
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

benchmarks/bench-qsort.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#include "bench-qsort.hpp"
2+
#include "bench-argsort.hpp"
3+
#include "bench-partial-qsort.hpp"
4+
#include "bench-qselect.hpp"
File renamed without changes.
File renamed without changes.

benchmarks/bench_qsort.cpp

Lines changed: 0 additions & 4 deletions
This file was deleted.

benchmarks/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ libbench = []
22

33
if cpp.has_argument('-march=icelake-client')
44
libbench += static_library('bench_qsort',
5-
files('bench_qsort.cpp', ),
5+
files('bench-qsort.cpp', ),
66
dependencies: gbench_dep,
77
include_directories : [src, utils],
88
cpp_args : ['-O3', '-march=icelake-client'],
@@ -11,7 +11,7 @@ endif
1111

1212
if cancompilefp16
1313
libbench += static_library('bench_qsortfp16',
14-
files('bench_qsortfp16.cpp', ),
14+
files('bench-qsortfp16.cpp', ),
1515
dependencies: gbench_dep,
1616
include_directories : [src, utils],
1717
cpp_args : ['-O3', '-march=sapphirerapids'],

tests/meson.build

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ libtests = []
33
if cpp.has_argument('-march=skylake-avx512')
44
libtests += static_library('tests_kv',
55
files(
6-
'test_keyvalue.cpp',
7-
'test_argsort.cpp',
6+
'test-keyvalue.cpp',
7+
'test-argsort.cpp',
88
),
99
dependencies: gtest_dep,
1010
include_directories : [src, utils],
@@ -14,7 +14,7 @@ endif
1414

1515
if cpp.has_argument('-march=icelake-client')
1616
libtests += static_library('tests_qsort',
17-
files('test_sort.cpp', ),
17+
files('test-qsort.cpp', ),
1818
dependencies: gtest_dep,
1919
include_directories : [src, utils],
2020
cpp_args : ['-O3', '-march=icelake-client'],
@@ -23,7 +23,7 @@ endif
2323

2424
if cancompilefp16
2525
libtests += static_library('tests_qsortfp16',
26-
files('test_qsortfp16.cpp', ),
26+
files('test-qsortfp16.cpp', ),
2727
dependencies: gtest_dep,
2828
include_directories : [src, utils],
2929
cpp_args : ['-O3', '-march=sapphirerapids'],
File renamed without changes.

0 commit comments

Comments
 (0)