How to use Google Benchmark for C++ programs

Поделиться
HTML-код
  • Опубликовано: 24 окт 2024

Комментарии • 20

  • @kyuantym
    @kyuantym Год назад

    Just made my contribution to the Benchmark library after watching and understanding better from this video. Thanks.

  • @eniocc
    @eniocc 4 года назад +3

    Perfect content. I really appreciate your Channel.

  • @whohu8954
    @whohu8954 Год назад

    Very nice and clear intro!

  • @neoneo1503
    @neoneo1503 4 месяца назад

    The iteration is numbers of loop of "for (auto _ : state)" to get a stable time measurement(CPU time and Wall time(CPU time plus others))

  • @chandramohanjagtap1300
    @chandramohanjagtap1300 4 года назад +3

    Excellent man Thanks.

  • @CarlosLinaresLopez
    @CarlosLinaresLopez 2 года назад

    This video is true gold! Thanks a lot Ari!

  • @rohanghige
    @rohanghige 3 года назад +2

    Really appreciate your efforts. Fabulous content.

    • @arisaif
      @arisaif  3 года назад

      Glad you liked it!

  • @markusbuchholz3518
    @markusbuchholz3518 4 года назад +2

    As always, amazing. Thanks

  • @sirnawaz
    @sirnawaz Год назад

    19:00, the compiler does not necessarily optimize it that way, using compile-time computation. It could also replace the loop and the entire function body with `return n;` as the sum would be n, and there is no computation to spend time on.

  • @姜山-w8b
    @姜山-w8b 2 года назад

    Thanks for such excellent content. May I share your videos to Chinese video websites for youtube is blocked in China.

  • @rexi4238
    @rexi4238 2 года назад

    Thank you very much! I checked the documents but they didn't really help me >-< this video did! ♥♥♥

  • @sorrefly
    @sorrefly 3 года назад

    This video is simply awesome. Thank you very much! :)

  • @ChristianBrugger
    @ChristianBrugger Год назад

    I agree, a very great video! Thank you 🙂

  • @vasquezitosanchezito
    @vasquezitosanchezito 3 года назад

    Learned a lot! Brilliant!

  • @feraudyh
    @feraudyh 2 года назад

    That was outstanding.

  • @eduardocchagas
    @eduardocchagas 3 года назад

    Thank you!👏👏👏👏👏👏

  • @player-eric
    @player-eric Год назад

    Hi~ Could you please provide accurate subtitles for this video?

  • @96Vatras96
    @96Vatras96 4 года назад

    19:40 This is a very simple function. The loop doesn't even run because sum = n