- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个功能:
bool interpolate(const Mat &im, float ofsx, float ofsy, float a11, float a12, float a21, float a22, Mat &res)
{
bool ret = false;
// input size (-1 for the safe bilinear interpolation)
const int width = im.cols-1;
const int height = im.rows-1;
// output size
const int halfWidth = res.cols >> 1;
const int halfHeight = res.rows >> 1;
float *out = res.ptr<float>(0);
const float *imptr = im.ptr<float>(0);
for (int j=-halfHeight; j<=halfHeight; ++j)
{
const float rx = ofsx + j * a12;
const float ry = ofsy + j * a22;
#pragma omp simd
for(int i=-halfWidth; i<=halfWidth; ++i, out++)
{
float wx = rx + i * a11;
float wy = ry + i * a21;
const int x = (int) floor(wx);
const int y = (int) floor(wy);
if (x >= 0 && y >= 0 && x < width && y < height)
{
// compute weights
wx -= x; wy -= y;
int rowOffset = y*im.cols;
int rowOffset1 = (y+1)*im.cols;
// bilinear interpolation
*out =
(1.0f - wy) * ((1.0f - wx) * imptr[rowOffset+x] + wx * imptr[rowOffset+x+1]) +
( wy) * ((1.0f - wx) * imptr[rowOffset1+x] + wx * imptr[rowOffset1+x+1]);
} else {
*out = 0;
ret = true; // touching boundary of the input
}
}
}
return ret;
}
halfWidth
是非常随机的:可以是9、84、20、95、111 ...我只是在尝试优化此代码,我不了解它的详细信息。
for
已经被矢量化了,但是Intel Advisor建议这样做:
;
是什么意思。 halfWidth*2
+1(因为它从
-halfWidth
变成
+halfWidth
是8)的倍数。”。但是我该怎么做呢?如果添加随机周期,显然会破坏算法!
const int vectorLength = 8;
const int iterations = halfWidth*2+1;
const int remainder = iterations%vectorLength;
for(int i=0; i<loop+length-remainder; i++){
//this iteration was not supposed to exist, skip it!
if(i>halfWidth)
continue;
}
-halfWidth
变为
halfWidth
,但这是为了让您了解我的“伪”迭代策略。
最佳答案
首先,您必须检查Vector Advisor效率指标以及与Loop Body相比在Loop Remainder中花费的相对时间(请参阅Advisor中的热点列表)。如果效率接近100%(或在Remainder中花费的时间很小),那么就不值得付出努力(和MSalters在评论中提到的钱一样)。
如果它是<< 100%(并且该工具未报告其他任何惩罚),则可以重构代码以“添加伪造的迭代”(罕见的用户可以负担得起),或者应该尝试使用 #pragma loop_count 最典型的#iterations值(取决于典型的halfWidth值)。
如果halfWIdth是完全是随机的(没有共同值或平均值),那么您实际上无法解决此问题。
关于c++ - 我的代码中的 “Peel/Remainder”循环无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43778590/
我正在尝试实现与 on this website 相同的效果(如果你向下滚动到页面底部,你会看到 map 出现了一种“剥离效果”,就像以前的 DIV 在 map 上方滑动一样)。我试图在这个 jsfi
我有这个功能: bool interpolate(const Mat &im, float ofsx, float ofsy, float a11, float a12, float a21, flo
试图理解JGit: Retrieve tag associated with a git commit ,我到达了 JGit 邮件列表上的这个线程: [jgit-dev] Commits and ta
我在 2018.04 玩这个最长的 token 匹配,但我认为最长的 token 不匹配: say 'aaaaaaaaa' ~~ m/ | a+? | a+ /; # 「a」
我正在 iOS 10 中试验贴纸 iMessage 应用程序,我遇到了 override func didStartSending(_ message: MSMessage, conversation
我是一名优秀的程序员,十分优秀!