登录
首页 >  Golang >  Go问答

go中的定时调用是怎么实现的?

来源:stackoverflow

时间:2024-02-22 09:24:26 489浏览 收藏

各位小伙伴们,大家好呀!看看今天我又给各位带来了什么文章?本文标题《go中的定时调用是怎么实现的?》,很明显是关于Golang的文章哈哈哈,其中内容主要会涉及到等等,如果能帮到你,觉得很不错的话,欢迎各位多多点评和分享!

问题内容

我正在尝试计算函数的执行时间,但它总是返回 0ns,这令人难以置信。中间添加了 1ns 睡眠,但它会做奇怪的事情(未注释时)。这是代码:

func pow2(base, exponent int64) int64 {
    var result int64 = 1
    for ; exponent > 0; exponent >>= 1 {
        result *= base
    }
    return result
}
func test_pow2(*testing.t) {
    var base, exponent, n, expected int64 = 2, 256, 0, 0
    var start time.time
    var duration time.duration

    start = time.now()
    n = fastexponentiationalgorithm(base, exponent)
    //time.sleep(1 * time.nanosecond)
    duration = time.since(start)
    expected = math.pow(base, exponent)
    if n != expected {
        fmt.errorf("expected %+v but got %+v", expected, n)
    } else {
        fmt.printf("pow2(%+v, %+v) executed in %dns\n", base, exponent, duration / time.nanosecond)
    }
}

希望有人能指出我的错误, 问候。

编辑:根据 adrian 和迪斯科赞美诗的建议,生成了一个基准,结果如下:

func benchmark_pow2(b *testing.b) {
    var base, exponent, n, expected int64 = 2, 10, 0, 0

    expected = math.pow(base, exponent)

    b.resettimer()
    n = pow2(base, exponent)
    b.stoptimer()

    if n != expected {
        b.errorf("expected %d but got %d", expected, n)
    }
}

执行后,会生成以下输出:

Benchmark_pow2
    test1_test.go:44: expected 20 but got 16
--- FAIL: Benchmark_pow2

这里发生了什么?为什么会这样失败?


正确答案


时间包的有效精度并不是那么高。尽管该值达到“纳秒精度”,但这并不意味着时间实际上每纳秒更新一次。根据我自己的测试,当前时间的分辨率实际上为 100 纳秒,并且大约每 0.5 毫秒更新一次。这很可能会根据您的操作系统、硬件和其他因素而有所不同。

如果您想以正确的方式计时,请阅读测试包中的 benchmarks。基准测试提供了更好的精度,因为它们在循环中多次运行您的代码,以获得平均执行时间。这允许您测量在不聚合时太小的时间(就像您的情况一样)。

以上就是《go中的定时调用是怎么实现的?》的详细内容,更多关于的资料请关注golang学习网公众号!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>