[K/N][Tests] Migrate testData of KT59030WorkaroundTest to new new test infra

This commit is contained in:
Vladimir Sukharev
2024-01-06 20:17:58 +01:00
committed by Space Team
parent bf01cb16b4
commit 55a78bf499
3 changed files with 57 additions and 1 deletions
@@ -0,0 +1,28 @@
---
typedef float __attribute__ ((__vector_size__ (16))) KVector4f;
typedef int __attribute__ ((__vector_size__ (16))) KVector4i32;
struct Complex {
unsigned int ui;
KVector4f vec4f;
struct Complex* next;
int arr[2];
};
struct Complex produceComplex() {
struct Complex complex = {
.ui = 128,
.vec4f = {1.0, 1.0, 1.0, 1.0},
.next = 0,
.arr = {-51, -19}
};
return complex;
};
static float sendV4F(KVector4f v) {
return v[0] + 2 * v[1] + 4 * v[2] + 8 * v[3];
}
static int sendV4I(KVector4i32 v) {
return v[0] + 2 * v[1] + 4 * v[2] + 8 * v[3];
}