From 97872fcead99b0f08a5395691cc15a3afac618a7 Mon Sep 17 00:00:00 2001
From: guptar <guptar@mycompany.com>
Date: Mon, 7 Sep 2015 17:04:26 +0000
Subject: [PATCH] Removed redundant define (EXPRESSMIMO_TARGET) which is not
used anymore
git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7807 818b1a75-f10b-46b9-bf7c-635c3b92a50f
---
openair1/PHY/INIT/lte_init.c | 2 --
openair1/PHY/TOOLS/cadd_sv.c | 15 ---------------
openair1/PHY/TOOLS/cadd_vv.c | 15 ---------------
openair1/PHY/TOOLS/cmult_vvh.c | 13 -------------
openair1/PHY/TOOLS/defs.h | 15 ---------------
openair1/PHY/TOOLS/memory_routines.c | 7 -------
6 files changed, 67 deletions(-)
diff --git a/openair1/PHY/INIT/lte_init.c b/openair1/PHY/INIT/lte_init.c
index 36bb40f347..72c5d95629 100644
--- a/openair1/PHY/INIT/lte_init.c
+++ b/openair1/PHY/INIT/lte_init.c
@@ -888,10 +888,8 @@ void phy_init_lte_top(LTE_DL_FRAME_PARMS *lte_frame_parms)
ccodelte_init();
ccodelte_init_inv();
-#ifndef EXPRESSMIMO_TARGET
phy_generate_viterbi_tables();
phy_generate_viterbi_tables_lte();
-#endif //EXPRESSMIMO_TARGET
init_td8();
init_td16();
diff --git a/openair1/PHY/TOOLS/cadd_sv.c b/openair1/PHY/TOOLS/cadd_sv.c
index 5cab789a68..1ca91b7969 100644
--- a/openair1/PHY/TOOLS/cadd_sv.c
+++ b/openair1/PHY/TOOLS/cadd_sv.c
@@ -28,7 +28,6 @@
*******************************************************************************/
#include "defs.h"
-#ifndef EXPRESSMIMO_TARGET
static __m128i alpha_128 __attribute__ ((aligned(16)));
static __m128i shift __attribute__ ((aligned(16)));
@@ -169,17 +168,3 @@ main ()
}
#endif //MAIN
-
-
-#else //EXPRESSMIMO_TARGET
-
-int add_cpx_vector(short *x,
- short *alpha,
- short *y,
- unsigned int N)
-{
-
-}
-
-
-#endif //EXPRESSMIMO_TARGET
diff --git a/openair1/PHY/TOOLS/cadd_vv.c b/openair1/PHY/TOOLS/cadd_vv.c
index f369a659a9..70ec37e50b 100644
--- a/openair1/PHY/TOOLS/cadd_vv.c
+++ b/openair1/PHY/TOOLS/cadd_vv.c
@@ -28,7 +28,6 @@
*******************************************************************************/
#include "defs.h"
-#ifndef EXPRESSMIMO_TARGET
int add_vector16(short *x,
short *y,
@@ -286,17 +285,3 @@ main ()
}
#endif //MAIN
-
-#else //EXPRESSMIMO_TARGET
-
-/*
-int add_vector16(short *x,
- short *y,
- short *z,
- unsigned int N)
-{
-
-}
-*/
-
-#endif // EXPRESSMIMO_TARGET
diff --git a/openair1/PHY/TOOLS/cmult_vvh.c b/openair1/PHY/TOOLS/cmult_vvh.c
index d5e299b724..7e360d9728 100644
--- a/openair1/PHY/TOOLS/cmult_vvh.c
+++ b/openair1/PHY/TOOLS/cmult_vvh.c
@@ -28,7 +28,6 @@
*******************************************************************************/
#include "defs.h"
-#ifndef EXPRESSMIMO_TARGET
static __m128i shift __attribute__ ((aligned(16)));
@@ -365,15 +364,3 @@ main ()
}
#endif //MAIN
-
-#else //EXPRESSMIMO_TARGET
-int mult_cpx_vector_h(short *x1,
- short *x2,
- short *y,
- unsigned int N,
- unsigned short output_shift,
- short sign)
-{
-
-}
-#endif //EXPRESSMIMO_TARGET
diff --git a/openair1/PHY/TOOLS/defs.h b/openair1/PHY/TOOLS/defs.h
index 7d8942dd72..0ea1af57e4 100644
--- a/openair1/PHY/TOOLS/defs.h
+++ b/openair1/PHY/TOOLS/defs.h
@@ -64,7 +64,6 @@ struct complex32 {
int32_t i;
};
-#ifndef EXPRESSMIMO_TARGET
/*!\fn void multadd_real_vector_complex_scalar(int16_t *x,int16_t *alpha,int16_t *y,uint32_t N)
This function performs componentwise multiplication and accumulation of a complex scalar and a real vector.
@param x Vector input (Q1.15)
@@ -480,20 +479,6 @@ Compensate the phase rotation of the RF. WARNING: This function is currently unu
*/
-#else // EXPRESSMIMO_TARGET
-
-#define fft(x,y,twiddle,rev,log2size,scale,input_fmt) \
-(((twiddle)==0) ? \
- (fft(1<<(log2size),((unsigned long*)(x)),((unsigned long*)(y)))) : \
- (ifft(1<<(log2size),((unsigned long*)(x)),((unsigned long*)(y)))))
-
-#define mult_cpx_vector(x1,x2,y,N,os) component_wise_product(N,(unsigned long *)(x1),(unsigned long *)(x2),(unsigned long *)(y))
-
-#define mult_cpx_vector2(x1,x2,y,N,os) component_wise_product(N,(unsigned long *)(x1),(unsigned long *)(x2),(unsigned long *)(y))
-
-#define add_vector16(x,y,z,N) component_wise_addition(N,(unsigned long*)(x),(unsigned long*)(y),(unsigned long*)(z))
-
-#endif // EXPRESSMIMO_TARGET
int8_t dB_fixed(uint32_t x);
diff --git a/openair1/PHY/TOOLS/memory_routines.c b/openair1/PHY/TOOLS/memory_routines.c
index be93880078..b4a4676a6d 100755
--- a/openair1/PHY/TOOLS/memory_routines.c
+++ b/openair1/PHY/TOOLS/memory_routines.c
@@ -26,7 +26,6 @@
Address : Eurecom, Campus SophiaTech, 450 Route des Chappes, CS 50193 - 06904 Biot Sophia Antipolis cedex, FRANCE
*******************************************************************************/
-#ifndef EXPRESSMIMO_TARGET
#include "PHY/sse_intrin.h"
void Zero_Buffer(void *buf,unsigned int length)
@@ -63,12 +62,6 @@ void mmxcopy(void *dest,void *src,int size)
_mm_empty();
}
-#else //EXPRESSMIMO_TARGET
-
-
-
-#endif //EXPRESSMIMO_TARGET
-
void Zero_Buffer_nommx(void *buf,unsigned int length)
{
--
GitLab