What are FLOPs in computing? (AKIO TV)

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

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

  • @VasylYatsyshyn
    @VasylYatsyshyn 10 месяцев назад +3

    very clear explanation, thank you, akio

    • @AKIOTV
      @AKIOTV  10 месяцев назад +2

      glad you liked it :)

  • @masteriveyletsplay2339
    @masteriveyletsplay2339 10 месяцев назад +1

    Lololol I absolutely love your mic stand…… truly epic.

  • @AKIOTV
    @AKIOTV  5 лет назад +6

    The example in the video consisted of 31 bits actually, that's just a stupid typo, it should have been 32.

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

    this is wounderful thank you for your teaching for now i now know FLOPs.

  • @ibrahimyldrm8003
    @ibrahimyldrm8003 3 месяца назад

    Very useful and simple. Thanks. You might consider revising the title as "FLOPs for dummies" :)

  • @TechKyle
    @TechKyle 5 лет назад +4

    That's really interesting. I never knew what FLOPs were, glad to have watched this video.

    • @TechAngelx
      @TechAngelx 7 месяцев назад +1

      perhaps u just need to look at your dick to know what a flop is.

  • @Obeyhostility
    @Obeyhostility 2 года назад +1

    love your mic set up

  • @fathimaa_riya
    @fathimaa_riya 4 года назад +1

    very interesting and helpful..... thank you

  • @obada.
    @obada. 4 года назад +2

    if the operation is long like (x**y/z) or short like (x+y), will it be the same as one operation? especially when the long one is a variable

  • @robertbutcher222
    @robertbutcher222 2 дня назад

    Thanks. I recently heard about flops but wasn’t sure what they were. I was wondering if it could be the number of 1s and 0s switching to one or the other, but this is a whole lot more involved. I think it’s interesting.
    When it comes to computers listing flops, not just on the cpu or gpu, like flops of a supercomputer, are those cpu flops, gpu flops, all the flops of all flop capable parts combined? How do flops play a part when not dealing with math, but let’s say a video game?

    • @AKIOTV
      @AKIOTV  2 дня назад

      @@robertbutcher222 Flops on any device are the same thing. When you have a supercomputer claiming X amount of flops, that's just the total usable amount availabe. It could be cpu and gpu combined, but it's also possible the cpu's aren't used, depends which one it is. gpus are obviously always used if they are present; they wouldn't even be installed otherwise.
      At higher levels (say running a game) floating point math is involved in a bunch of things, most notably in rendering 3d graphics. Essentially you calculate what a certain 3d space would look like from the perspective of the player. And do this 60 times per second, or however many times the screen refreshes. The calculations done are mostly on floating point numbers.

    • @robertbutcher222
      @robertbutcher222 2 дня назад

      @@AKIOTV Thanks. It’s interesting how gpus do x flops so fast, along with every computer part doing many things so fast.

  • @PeculiarPI
    @PeculiarPI 11 месяцев назад

    Thanks! :)

  • @alibabarahaei2229
    @alibabarahaei2229 9 месяцев назад

    Perfect❤

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

    Nice explanation

  • @quantaloop4002
    @quantaloop4002 9 месяцев назад +1

    in the last number, shouldn't the exponent be negative?

    • @AKIOTV
      @AKIOTV  9 месяцев назад

      yep

  • @abatollo
    @abatollo 5 лет назад +1

    Great content, as always, easy to digest. Would you mind if I translate some of it in Russian?

    • @AKIOTV
      @AKIOTV  5 лет назад

      You mean using Russian subtitles or something?

    • @abatollo
      @abatollo 5 лет назад

      @@AKIOTV I mean I will publish some of it in Russian in text in one of the tech media outlets with a link to your channel! Although I don't think it will generate more views as my audience doesn't really know English... But it would be insightful!

    • @AKIOTV
      @AKIOTV  5 лет назад

      @@abatollo Sure

    • @abatollo
      @abatollo 5 лет назад

      @@AKIOTV thanks! Your content is one if the best I've seen. Simple to undersrand complicated subjects.

  • @mryesnno4301
    @mryesnno4301 4 года назад

    I want to understand something. If I had 1terabyte of data and had a computer that has a 1GFLOPS processor. How long will it take to process it? Thanks.

    • @AKIOTV
      @AKIOTV  4 года назад +1

      that depends entirely on the type of data, and the operations that you want to perform on them.

    • @mryesnno4301
      @mryesnno4301 4 года назад

      @@AKIOTV Lets say the data is graphics rendering and the operation is to rendering. Thanks

    • @AKIOTV
      @AKIOTV  4 года назад +1

      @@mryesnno4301 Look, there's no way to figure out how long that data will take to process. "Graphics" is an extremely broad thing; there are loads of types of graphics information to deal with, and there are also loads of possible operations to perform on said information. Generally speaking, it's incredibly difficult to work out how much time an amount of data will take to process based on characteristics of the data and the operations used.
      When an estimate is given on processing time, that's usually done by processing a small sample, and measuring the time it takes to process that. Based on that information you can then estimate how long a larger batch would take.

    • @mryesnno4301
      @mryesnno4301 4 года назад

      @@AKIOTV thanks