45 lines
852 B
C
45 lines
852 B
C
#ifndef _TEST_COMPLEX_ARITHMETICS_H_
|
|
#define _TEST_COMPLEX_ARITHMETICS_H_
|
|
|
|
// ==================== Add ===================== //
|
|
|
|
void test_complex_add_fp32();
|
|
|
|
void test_complex_add_scaled_fp32();
|
|
|
|
void test_complex_add_fp64();
|
|
|
|
void test_complex_add_scaled_fp64();
|
|
|
|
void test_complex_add();
|
|
|
|
// ================== Subtract ================== //
|
|
|
|
void test_complex_subtract_fp32();
|
|
|
|
void test_complex_subtract_scaled_fp32();
|
|
|
|
void test_complex_subtract_fp64();
|
|
|
|
void test_complex_subtract_scaled_fp64();
|
|
|
|
void test_complex_subtract();
|
|
|
|
// ================== Multiply ================== //
|
|
|
|
void test_complex_multiply_fp32();
|
|
|
|
void test_complex_multiply_fp64();
|
|
|
|
void test_complex_multiply();
|
|
|
|
// =================== Divide =================== //
|
|
|
|
void test_complex_divide_fp32();
|
|
|
|
void test_complex_divide_fp64();
|
|
|
|
void test_complex_divide();
|
|
|
|
#endif
|
|
|