Files
clang-p2996/libcxx/test/std/experimental/simd/simd.mem/store.pass.cpp
Louis Dionne 31cbe0f240 [libc++] Remove the c++98 Lit feature from the test suite
C++98 and C++03 are effectively aliases as far as Clang is concerned.
As such, allowing both std=c++98 and std=c++03 as Lit parameters is
just slightly confusing, but provides no value. It's similar to allowing
both std=c++17 and std=c++1z, which we don't do.

This was discovered because we had an internal bot that ran the test
suite under both c++98 AND c++03 -- one of which is redundant.

Differential Revision: https://reviews.llvm.org/D80926
2020-06-03 09:37:22 -04:00

98 lines
2.5 KiB
C++

//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14
// <experimental/simd>
//
// // stores [simd.store]
// template <class U, class Flags> void copy_to(U* mem, Flags f) const;
#include <experimental/simd>
#include <cstdint>
#include <cassert>
#include "test_macros.h"
namespace ex = std::experimental::parallelism_v2;
template <typename SimdType>
void test_store() {
SimdType a([](int i) { return 4 - i; });
{
alignas(32) int32_t buffer[4] = {0};
a.copy_to(buffer, ex::element_aligned_tag());
assert(buffer[0] == 4);
assert(buffer[1] == 3);
assert(buffer[2] == 2);
assert(buffer[3] == 1);
}
{
alignas(32) int32_t buffer[4] = {0};
a.copy_to(buffer, ex::vector_aligned_tag());
assert(buffer[0] == 4);
assert(buffer[1] == 3);
assert(buffer[2] == 2);
assert(buffer[3] == 1);
}
{
alignas(32) int32_t buffer[4] = {0};
a.copy_to(buffer, ex::overaligned_tag<32>());
assert(buffer[0] == 4);
assert(buffer[1] == 3);
assert(buffer[2] == 2);
assert(buffer[3] == 1);
}
{
alignas(32) int32_t buffer[4] = {0};
a.copy_to(buffer, ex::element_aligned);
assert(buffer[0] == 4);
assert(buffer[1] == 3);
assert(buffer[2] == 2);
assert(buffer[3] == 1);
}
{
alignas(32) int32_t buffer[4] = {0};
a.copy_to(buffer, ex::vector_aligned);
assert(buffer[0] == 4);
assert(buffer[1] == 3);
assert(buffer[2] == 2);
assert(buffer[3] == 1);
}
{
alignas(32) int32_t buffer[4] = {0};
a.copy_to(buffer, ex::overaligned<32>);
assert(buffer[0] == 4);
assert(buffer[1] == 3);
assert(buffer[2] == 2);
assert(buffer[3] == 1);
}
}
template <typename SimdType>
void test_converting_store() {
float buffer[4] = {0.};
SimdType a([](int i) { return 1 << i; });
a.copy_to(buffer, ex::element_aligned_tag());
assert(buffer[0] == 1.);
assert(buffer[1] == 2.);
assert(buffer[2] == 4.);
assert(buffer[3] == 8.);
}
int main(int, char**) {
// TODO: adjust the tests when this assertion fails.
test_store<ex::native_simd<int32_t>>();
test_store<ex::fixed_size_simd<int32_t, 4>>();
test_converting_store<ex::native_simd<int32_t>>();
test_converting_store<ex::fixed_size_simd<int32_t, 4>>();
return 0;
}