@@ -90,55 +90,6 @@ ftype PASTEF772(ch,blasname,chc) \
90
90
}
91
91
92
92
#ifdef BLIS_ENABLE_BLAS
93
- #ifdef AOCL_F2C
94
- dcomplex zdotc_
95
- (
96
- dcomplex * ret_val ,
97
- const f77_int * n ,
98
- const dcomplex * x , const f77_int * incx ,
99
- const dcomplex * y , const f77_int * incy
100
- )
101
- {
102
- AOCL_DTL_TRACE_ENTRY (AOCL_DTL_LEVEL_TRACE_1 );
103
- AOCL_DTL_LOG_DOTV_INPUTS (AOCL_DTL_LEVEL_TRACE_1 ,'Z' , 'C' , * n , * incx , * incy );
104
- dim_t n0 ;
105
- dcomplex * x0 ;
106
- dcomplex * y0 ;
107
- inc_t incx0 ;
108
- inc_t incy0 ;
109
- dcomplex rho ;
110
-
111
- /* Initialize BLIS. */
112
- bli_init_auto ();
113
-
114
- /* Convert/typecast negative values of n to zero. */
115
- bli_convert_blas_dim1 ( * n , n0 );
116
-
117
- /* If the input increments are negative, adjust the pointers so we can
118
- use positive increments instead. */
119
- bli_convert_blas_incv ( n0 , (dcomplex * )x , * incx , x0 , incx0 );
120
- bli_convert_blas_incv ( n0 , (dcomplex * )y , * incy , y0 , incy0 );
121
-
122
- /* Call BLIS interface. */
123
- PASTEMAC2 (z ,dotv ,_ex )
124
- (
125
- BLIS_CONJUGATE ,
126
- BLIS_NO_CONJUGATE ,
127
- n0 ,
128
- x0 , incx0 ,
129
- y0 , incy0 ,
130
- & rho ,
131
- NULL ,
132
- NULL
133
- );
134
-
135
- AOCL_DTL_TRACE_EXIT (AOCL_DTL_LEVEL_TRACE_1 );
136
- /* Finalize BLIS. */
137
- bli_finalize_auto ();
138
- * ret_val = rho ;
139
- return rho ;
140
- }
141
- #endif
142
93
#ifdef BLIS_CONFIG_EPYC
143
94
float sdot_
144
95
(
@@ -556,7 +507,6 @@ scomplex cdotc_
556
507
557
508
return rho ;
558
509
}
559
- #ifndef AOCL_F2C
560
510
dcomplex zdotc_
561
511
(
562
512
const f77_int * n ,
@@ -639,7 +589,6 @@ dcomplex zdotc_
639
589
640
590
return rho ;
641
591
}
642
- #endif
643
592
#else
644
593
INSERT_GENTFUNCDOTC_BLAS ( dot , dotv )
645
594
#endif
0 commit comments