#include <stdlib.h> | |
#include <stdio.h> | |
#include <springbok_intrinsics.h> | |
#include <riscv_vector.h> | |
#include "pw_unit_test/framework.h" | |
namespace pw_unit_test_demo { | |
namespace { | |
TEST(SpringbokTest, ExceptBool) { | |
size_t vl = __riscv_vsetvl_e8m1(32); | |
EXPECT_TRUE(vl == 32); | |
} | |
} // namespace | |
} // namespace pw_unit_test_demo |