| 195 | |
| 196 | |
| 197 | void Custom::custom(const string before_processing,const xChangeLayer *xchange) |
| 198 | { |
| 199 | |
| 200 | |
| 201 | map<string, functionptr>::iterator result = custom_func_keys.find(before_processing); |
| 202 | if(result != custom_func_keys.end()){ |
| 203 | |
| 204 | (this->*(result->second))(xchange); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | void Frcnn_gemm(const float *src, const vector<float> &weightsT, const vector<float>& bias, float *dst, int M, int N, int O){ |
| 209 |
no test coverage detected