zhang natha

Results 2 comments of zhang natha

> 速度是上去了,但是:将随机数据改成固定数据,运行费SSE与SSE代码,产生的结果不一致,match_result.txt文件内容不一致。 - 问题项 for循环内部计算:**非SSE** :`PartialScore = PartialSum / SumOfCoords; ` 的SumOfCoords值不应该是 **SSE**:`auto PartialScore = _mm_cvtss_f32($PartialSum) / (template_feat_size + 1);` 中的template_feat_size固定值

最新版本的测试结果未有加速效果,测试记录: - 非SSE版本 ```shell $ g++ normal_calSimilarity.cpp -O3 -o normal_calSimilarity_gcc -lstdc++ -lm $ ./normal_calSimilarity_gcc Function took 311.048 milliseconds. Match result datas saved to match_result.txt! ``` 耗时:**311.048**毫秒 - SSE版本 ```shell $...