我有以下函数,它根据输入返回一个值。我需要尽可能快地制作这段代码,而不使用divison或modulo运算符或循环。 每个连续值之间的差值几乎等于6553.
int GetScalingFactor(int input)
{
unsigned int factor = 0;
if(input < 13107) factor = 72816;
else if(input < 19660) factor = 81918;
else if(input < 26214) factor = 93621;
else if(input < 32767) factor = 109225;
else if(input < 39321) factor = 131070;
else if(input < 45874) factor = 163837;
else if(input < 52428) factor = 218450;
else if(input < 58981) factor = 327675;
return factor;
}
答案 0 :(得分:3)
在c ++中使用std::lower_bound
:
int GetScalingFactor(int input)
{
const unsigned int inputs[] = {13107, 19660, 26214, 32767, 39321, 45874, 52428, 58981};
const int factors[] = {72816, 81918, 93621, 109225, 131070, 163837, 218450, 327675, 0};
auto it = std::lower_bound(std::begin(inputs), std::end(inputs), input + 1);
return factors[std::distance(std::begin(inputs), it)];
}
答案 1 :(得分:1)
您可以准备一个包含72816
重复13107
次,81918
重复19660-13107
次的表格,依此类推,只需检查上限(58981)。如果在范围内,只需返回table[input]
,否则返回0
,就像您当前(应该)那样。
没有除法,没有模数,只有一些已分配的内存(远低于1兆字节),以及预先计算的表。
概念证明:
#include <stdio.h>
#include <stdint.h>
int32_t table[58981];
void prepare_table()
{
int32_t input,factor;
for (input=0;input<sizeof(table)/sizeof(table[0]);input++)
{
// just reusing your code as-is, but only to create the table
if(input < 13107) factor = 72816;
else if(input < 19660) factor = 81918;
else if(input < 26214) factor = 93621;
else if(input < 32767) factor = 109225;
else if(input < 39321) factor = 131070;
else if(input < 45874) factor = 163837;
else if(input < 52428) factor = 218450;
else if(input < 58981) factor = 327675;
table[input] = factor;
}
}
int GetScalingFactor(int input)
{
return input < sizeof(table)/sizeof(table[0]) ? table[input] : 0;
}
int main() {
prepare_table();
printf("%d => %d\n",19600,GetScalingFactor(19600));
printf("%d => %d\n",26200,GetScalingFactor(26200));
printf("%d => %d\n",58000,GetScalingFactor(58000));
printf("%d => %d\n",60000,GetScalingFactor(60000));
}
所以它的内存与计算权衡。如果您无法承受缓存未命中,那么除了除法或多次测试之外,您没有任何选择。
答案 2 :(得分:1)
为什么在我们可以使用模板扩展在编译时计算二进制搜索时使用数据?
概要:此代码为每个索引序列生成自定义lower_bound实现。
前提条件:每个索引必须按升序出现在元组中。
结果:在clang 3.9.1上没有生成输入数组。编译器仅以最有效的顺序比较每个边界。 GCC决定创建一个数组并有效地实现lower_bound本身(哇!)
代码:
#include <utility>
#include <tuple>
// turn values into types
template<std::size_t I> using index = std::integral_constant<std::size_t, I>;
// termination case
template<class T, class Tuple, std::size_t it>
std::size_t iteration(T value, Tuple&&, index<it>, index<0>)
{
return it;
}
// end of search 'else' path which will not be taken but there must
// be code available at compile time
template<class T, class Tuple, std::size_t first, std::size_t count, std::enable_if_t<(first >= count)>* = nullptr>
std::size_t iteration(T value, Tuple&& tuple, index<first>, index<count>)
{
return count-1;
}
// normal iteration of the lower_bound loop
template<class T, class Tuple, std::size_t first, std::size_t count, std::enable_if_t<(first < count)>* = nullptr>
std::size_t iteration(T value, Tuple&& tuple, index<first>, index<count>)
{
constexpr auto step = count / 2;
constexpr auto it = first + step;
if(std::get<it>(tuple) < value)
{
return iteration(value, std::forward<Tuple>(tuple), index<it>(), index<step + 1>());
}
else {
return iteration(value, std::forward<Tuple>(tuple), index<first>(), index<step>());
}
}
// expand out a lower-bound algorithm from a tuple of bounds
template<class Tuple, class T>
constexpr std::size_t tuple_lower_bound(Tuple&& tuple, const T& value)
{
constexpr auto count = index<std::tuple_size<std::decay_t<Tuple>>::value>();
constexpr auto first = index<0>();
return iteration(value, std::forward<Tuple>(tuple), first, count);
}
int GetScalingFactor(int input)
{
static constexpr auto indexes = std::make_tuple(13107, 19660, 26214, 32767, 39321, 45874, 52428, 58981);
static constexpr std::array<int, std::tuple_size<std::decay_t<decltype(indexes)>>::value + 1> factors =
{{
72816, 81918, 93621, 109225, 131070, 163837, 218450, 327675, 0
}};
auto i = tuple_lower_bound(indexes, input + 1);
return factors[i];
}
int main()
{
extern int get_input();
auto s1 = GetScalingFactor(get_input());
return s1;
}
答案 3 :(得分:0)
局部变量因子不是很有用。
我认为你无法真正优化“if else”序列,但你可以想到 什么是更常见的情况,并首先测试它们。所以大多数时候只有第一个条件才会进行。
int GetScalingFactor(int input) {
if(input < 13107) return 72816; // most common case
else if(input < 19660) return 81918; // second common case
else if(input < 26214) return 93621; // ...
else if(input < 32767) return 109225;
else if(input < 39321) return 131070;
else if(input < 45874) return 163837;
else if(input < 52428) return 218450;
else if(input < 58981) return 327675;
else return 0;
}
答案 4 :(得分:0)
如果编译器通过常量实现快速除法(使用乘法和移位),则以下函数将起作用:
int GetScalingFactor(int input)
{
static const int factors[] =
{
72816, 72816, 81918, 93621, 109225, 131070, 163837, 218450, 327675
};
if (input < 0)
{
input = 0;
}
else
{
input = (input * 2 + 1) / 13107;
if (input >= sizeof(factors) / sizeof(factors[0]))
{
return 0;
}
}
return factors[input];
}
答案 5 :(得分:0)
鉴于输入完全是任意的,并且没有比其他输入更可能的情况,那么您可以将检查重写为硬编码二进制搜索,其中您使用每个if语句将搜索到的数据间隔分成两部分: / p>
if(input < 32767ul)
{
if(input < 19660ul)
{
...
}
...
}
else if(input < 45874ul)
{
...
}
等等(在编码之前将其作为二进制搜索树在纸上绘制,如果这有帮助的话)。这减少了与“O log(n)”的比较次数,并且最好不能创建58981个项目的巨大查找表,其中input
是索引 - 这将是表现最好的解决方案的执行速度。
此外,您的代码也存在错误,您不应将无符号变量与int
混合使用。将数据类型切换为uint_fast32_t
。