mirror of
https://github.com/aicodix/code.git
synced 2026-04-27 14:30:36 +00:00
renamed sort.hh to simd_sort.hh
This commit is contained in:
parent
a80f5cd532
commit
6372a965cf
2 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
Regression Test for the SIMD wrappers sort
|
Regression Test for the SIMD sorting wrappers
|
||||||
|
|
||||||
Copyright 2024 Ahmet Inan <inan@aicodix.de>
|
Copyright 2024 Ahmet Inan <inan@aicodix.de>
|
||||||
*/
|
*/
|
||||||
|
|
@ -10,7 +10,7 @@ Copyright 2024 Ahmet Inan <inan@aicodix.de>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include "simd.hh"
|
#include "simd.hh"
|
||||||
#include "sort.hh"
|
#include "simd_sort.hh"
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
|
@ -38,7 +38,7 @@ int main()
|
||||||
for (int i = 0; i < WIDTH; ++i)
|
for (int i = 0; i < WIDTH; ++i)
|
||||||
assert(d.v[i] == e.v[i]);
|
assert(d.v[i] == e.v[i]);
|
||||||
}
|
}
|
||||||
std::cerr << "Sort regression test passed!" << std::endl;
|
std::cerr << "SIMD sort regression test passed!" << std::endl;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue