gpt4 book ai didi

c++ - 比率乘法期间的 chrono::duration_cast 问题

转载 作者:搜寻专家 更新时间:2023-10-31 00:52:36 24 4
gpt4 key购买 nike

我正在编写一些必须处理 NTP 时间的代码。我决定使用 std::chrono::duration 来代表他们,我希望这会让我的时间数学更容易做。

NTP 时间由无符号的 64 位整数表示,高 32 位为纪元以来的秒数,低 32 位为小数秒。纪元日期是 1900 年 1 月 1 日,但这与我在这里处理的问题不同,我已经知道如何处理它。对于我正在使用的示例,假设时间为 1970 年 1 月 1 日,以使数学更简单。

持续时间表示很简单:std::chrono::duration<std::uint64_t, std::ratio<1, INTMAX_C(0x100000000)>> .问题出在我尝试在 NTP 时间和系统时钟之间转换时。

在我的系统上,std::chrono::system_clock::durationstd::chrono::duration<int64_t, std::nano> .当我尝试使用 std::chrono::duration_cast在这两个持续时间之间转换,我在任一方向上都被截断了。在调试器中对此进行跟踪,我发现它与 duration_cast 有关。实现,在 libstdc++、libc++ 和 boost::chrono 中以同样的方式失败。简而言之,要从系统表示转换为 ntp 表示,它乘以 8388608/1953125 的比率,并在另一个方向上乘以相反的比率。它先乘以分子,再除以分母。数学是正确的,但初始乘法溢出 64 位表示并被截断,尽管实际转换(除法后)仍然很容易用这些位表示。

我可以手动进行此转换,但我的问题如下:

  1. 这是实现中的错误,还是只是一个限制?
  2. 如果有限制,我应该意识到这会是个问题吗?我没有看到任何文档似乎可以让我猜到这行不通。
  3. 是否有一种通用的方法来实现这一点而不是同一个问题的牺牲品?
  4. 这应该报告给谁?
  5. 最后,如果当 C++20 出现时,我使用一个 NTP 时钟和手动管理 to_sysfrom_sys函数,我可以简单地使用 std::chrono::clock_cast 吗?而不必担心其他微妙的问题?

这是我用来测试这个的代码和一些示例输出:

// #define BOOST
#ifdef BOOST
# include <boost/chrono.hpp>
# define PREFIX boost
#else
# include <chrono>
# define PREFIX std
#endif
#include <cstdint>
#include <iostream>

namespace chrono = PREFIX::chrono;
using PREFIX::ratio;
using PREFIX::nano;

using ntp_dur = chrono::duration<uint64_t, ratio<1, INTMAX_C(0x100000000)>>;
using std_dur = chrono::duration<int64_t, nano>;

int main() {
auto write = [](auto & label, auto & dur) {
std::cout << label << ": "
<< std::dec << dur.count()
<< std::hex << " (" << dur.count() << ")" << std::endl;
};

auto now = chrono::system_clock::now().time_since_epoch();
write("now", now);
std::cout << '\n';

std::cout << "Naive conversion to ntp and back\n";
auto a = chrono::duration_cast<std_dur>(now);
write("std", a);
auto b = chrono::duration_cast<ntp_dur>(a);
write("std -> ntp", b);
auto c = chrono::duration_cast<std_dur>(b);
write("ntp -> std", c);
std::cout << '\n';

std::cout << "Broken down conversion to ntp, naive back\n";
write("std", a);
auto d = chrono::duration_cast<chrono::seconds>(a);
write("std -> sec", d);
auto e = chrono::duration_cast<ntp_dur>(d);
write("sec -> ntp sec", e);
auto f = a - d;
write("std -> std frac", f);
auto g = chrono::duration_cast<ntp_dur>(f);
write("std frac -> ntp frac", f);
auto h = e + g;
write("ntp sec + ntp frac-> ntp", h);
auto i = chrono::duration_cast<std_dur>(h);
write("ntp -> std", i);
std::cout << '\n';

std::cout << "Broken down conversion to std from ntp\n";
write("ntp", h);
auto j = chrono::duration_cast<chrono::seconds>(h);
write("ntp -> sec", j);
auto k = chrono::duration_cast<std_dur>(j);
write("src -> std sec", j);
auto l = h - j;
write("ntp -> ntp frac", l);
auto m = chrono::duration_cast<std_dur>(l);
write("ntp frac -> std frac", m);
auto n = k + m;
write("std sec + std frac-> std", n);
}

示例输出:

now: 1530980834103467738 (153f22f506ab1eda)

Naive conversion to ntp and back
std: 1530980834103467738 (153f22f506ab1eda)
std -> ntp: 4519932809765 (41c60fd5225)
ntp -> std: 1052378865369 (f506ab1ed9)

Broken down conversion to ntp, naive back
std: 1530980834103467738 (153f22f506ab1eda)
std -> sec: 1530980834 (5b40e9e2)
sec -> ntp sec: 6575512612832804864 (5b40e9e200000000)
std -> std frac: 103467738 (62acada)
std frac -> ntp frac: 103467738 (62acada)
ntp sec + ntp frac-> ntp: 6575512613277195414 (5b40e9e21a7cdc96)
ntp -> std: 1052378865369 (f506ab1ed9)

Broken down conversion to std from ntp
ntp: 6575512613277195414 (5b40e9e21a7cdc96)
ntp -> sec: 1530980834 (5b40e9e2)
src -> std sec: 1530980834 (5b40e9e2)
ntp -> ntp frac: 444390550 (1a7cdc96)
ntp frac -> std frac: 103467737 (62acad9)
std sec + std frac-> std: 1530980834103467737 (153f22f506ab1ed9)

最佳答案

  1. Is this a bug in the implementations, or just a limitation?

只是一个限制。实现的行为符合规范。

  1. If a limitation, should I have realized this would be a problem? I didn't see any documentation that would seem to lead to being able to guess that this would not work.

规范在23.17.5.7 [time.duration.cast] C++ 标准。它记录了转换算法以按照您在问题中描述的方式运行。

  1. Is there a generic way to implement this that isn't prey to the same problem?

在处理非常精细的单位或非常大的范围时,您需要注意溢出错误的可能性。 chrono::duration_cast旨在成为尽可能高效地处理最常见转换的最低级别工具。 chrono::duration_cast尽可能准确,尽可能完全消除除法。

然而,没有任何一种转换算法能够始终使用有限的存储空间获得任意转换的正确答案。 C++17 引入了三种基于 duration_cast 的新转换算法并且旨在指导存在截断的方向:

floor  // truncate towards negative infinity
ceil // truncate towards positive infinity
round // truncate towards nearest, to even on tie

您可以编写自己的通用转换函数来处理诸如您描述的困难情况。这种由客户提供的转换不太可能适合一般用途。例如:

template <class DOut, class Rep, class Period>
DOut
via_double(std::chrono::duration<Rep, Period> d)
{
using namespace std::chrono;
using dsec = duration<long double>;
return duration_cast<DOut>(dsec{d});
}

以上示例中客户端提供的转换从 duration<long double> 反弹.这不太容易溢出(尽管不能免疫),通常在计算上会更昂贵,并且会遇到精度问题(并且取决于 numeric_limits<long double>::digits )。

对于我 ( numeric_limits<long double>::digits == 64 ),输入 1530996658751420125ns往返1530996658751420124ns (关闭 1ns)。可以通过使用 round 改进该算法在 duration_cast (再次以更多计算为代价):

template <class DOut, class Rep, class Period>
DOut
via_double(std::chrono::duration<Rep, Period> d)
{
using namespace std::chrono;
using dsec = duration<long double>;
return round<DOut>(dsec{d});
}

现在我的往返非常适合输入 1530996658751420125ns .但是,如果您的 long double只有 53 位精度,甚至没有 round将提供完美的往返。

  1. Should this be reported, and to whom?

任何人都可以按照 instructions at this link 提交针对 C++ 标准库一半的缺陷报告.这样一份报告将由 C++ 标准委员会的 LWG 小组委员会审阅。它可能会被采取行动,或者可能被宣布为 NAD(不是缺陷)。如果一个问题包含建议的措辞(关于您希望如何更改规范的详细说明),它将有更高的成功机会。

即您认为标准应该怎么说?

  1. Finally, if, when C++20 comes around, I use an NTP clock with manually curated to_sys and from_sys functions, will I simply be able to use std::chrono::clock_cast and not have to worry about other subtle problems?

找出答案的一种方法是用 this existing prototype 进行试验<chrono> 的 C++20 规范草案扩展名。

关于c++ - 比率乘法期间的 chrono::duration_cast 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51225009/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com