Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Do you think much about your shorts?

Do you think much about your shorts?

Scheduled Pinned Locked Moved The Lounge
csharpasp-netcomdata-structuresperformance
38 Posts 18 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Lost User

    In looking at this JPL/Nasa code, it makes references to doing this and that for "performance". In some cases, their loop variable is an int; in others a short; in others a long. Given a choice which is best? Probably an int, unless you "need" a long. Ironic that for the sake of "storage" (2 bytes), they've sacrificed performance. [asp.net - Why should I use int instead of a byte or short in C# - Stack Overflow](https://stackoverflow.com/questions/1097467/why-should-i-use-int-instead-of-a-byte-or-short-in-c-sharp)

    It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

    R Offline
    R Offline
    rnbergren
    wrote on last edited by
    #3

    When is the code from? There are times were storage does matter alot more than performance. And in the past for NASA they had some very strict storage requirements. I can see this being a huge discussion at the code review. Interesting to say the least. Me no, I never really think about it. I almost always use an int and move on with life.

    To err is human to really elephant it up you need a computer

    S L 2 Replies Last reply
    0
    • C Chris Losinger

      what does the compiler turn those into and what's the CPU word size?

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #4

      You mean it might be code that assumes a particular multi-platform optimizing compiler? And only if the index has no other function than to "iterate"? And refactoring is not an option?

      It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

      C 1 Reply Last reply
      0
      • L Lost User

        In looking at this JPL/Nasa code, it makes references to doing this and that for "performance". In some cases, their loop variable is an int; in others a short; in others a long. Given a choice which is best? Probably an int, unless you "need" a long. Ironic that for the sake of "storage" (2 bytes), they've sacrificed performance. [asp.net - Why should I use int instead of a byte or short in C# - Stack Overflow](https://stackoverflow.com/questions/1097467/why-should-i-use-int-instead-of-a-byte-or-short-in-c-sharp)

        It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #5

        Well,

        Gerry Schmitz wrote:

        In some cases, their loop variable is an int; in others a short; in others a long.

        Modern compilers will promote those loop variables to 32/64 bit depending on target architecture. If you are looking at old code... there were reasons to use integer BOOL for performance and 8 bit bool for smaller code-size many years ago. Optimizing compilers today make most of that pointless. I am finally getting around to reviewing that json library @code-witch keeps obsessing over. First thing I noticed was the liberal use of bool. But in the end... it does't really matter the compiler should promote some of these. Best Wishes, -David Delaune

        L H 2 Replies Last reply
        0
        • L Lost User

          You mean it might be code that assumes a particular multi-platform optimizing compiler? And only if the index has no other function than to "iterate"? And refactoring is not an option?

          It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

          C Offline
          C Offline
          Chris Losinger
          wrote on last edited by
          #6

          I mean: where does the code in question run? And what does the compiler generate, and how does that mesh with the target CPU? If it's hardware that's going to space, it's probably not running on a common commercial CPU, so you can't make assumptions about word size and what a 'short' is, etc.. [I don't actually know which code you're talking about]

          Gerry Schmitz wrote:

          And refactoring is not an option?

          if it's commented as being there for performance reasons, you can probably assume it was profiled and tested for performance.

          L 1 Reply Last reply
          0
          • L Lost User

            In looking at this JPL/Nasa code, it makes references to doing this and that for "performance". In some cases, their loop variable is an int; in others a short; in others a long. Given a choice which is best? Probably an int, unless you "need" a long. Ironic that for the sake of "storage" (2 bytes), they've sacrificed performance. [asp.net - Why should I use int instead of a byte or short in C# - Stack Overflow](https://stackoverflow.com/questions/1097467/why-should-i-use-int-instead-of-a-byte-or-short-in-c-sharp)

            It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

            J Offline
            J Offline
            Joan M
            wrote on last edited by
            #7

            Working in industrial sector... there are still devices that struggle with memory and therefore I use BYTES for counters when I can, same for the states machine controller variable... So for me it's a yes.

            www.robotecnik.com[^] - robots, CNC and PLC programming

            L 1 Reply Last reply
            0
            • R rnbergren

              When is the code from? There are times were storage does matter alot more than performance. And in the past for NASA they had some very strict storage requirements. I can see this being a huge discussion at the code review. Interesting to say the least. Me no, I never really think about it. I almost always use an int and move on with life.

              To err is human to really elephant it up you need a computer

              S Offline
              S Offline
              Slacker007
              wrote on last edited by
              #8

              rnbergren wrote:

              I never really think about it. I almost always use an int and move on with life.

              exactly. :thumbsup:

              L 1 Reply Last reply
              0
              • R rnbergren

                When is the code from? There are times were storage does matter alot more than performance. And in the past for NASA they had some very strict storage requirements. I can see this being a huge discussion at the code review. Interesting to say the least. Me no, I never really think about it. I almost always use an int and move on with life.

                To err is human to really elephant it up you need a computer

                L Offline
                L Offline
                Lost User
                wrote on last edited by
                #9

                Re: storage; it's "one variable".

                It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                1 Reply Last reply
                0
                • S Slacker007

                  rnbergren wrote:

                  I never really think about it. I almost always use an int and move on with life.

                  exactly. :thumbsup:

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #10

                  "Not thinking" is not something I ever boasted about. It was a thought exercise; regardless of what the compiler "might do".

                  It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                  S 1 Reply Last reply
                  0
                  • C Chris Losinger

                    I mean: where does the code in question run? And what does the compiler generate, and how does that mesh with the target CPU? If it's hardware that's going to space, it's probably not running on a common commercial CPU, so you can't make assumptions about word size and what a 'short' is, etc.. [I don't actually know which code you're talking about]

                    Gerry Schmitz wrote:

                    And refactoring is not an option?

                    if it's commented as being there for performance reasons, you can probably assume it was profiled and tested for performance.

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #11

                    You make a lot of assumptions.

                    It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                    C O 2 Replies Last reply
                    0
                    • J Joan M

                      Working in industrial sector... there are still devices that struggle with memory and therefore I use BYTES for counters when I can, same for the states machine controller variable... So for me it's a yes.

                      www.robotecnik.com[^] - robots, CNC and PLC programming

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #12

                      I worked with PLC's, etc. Never had to sweat 1 or 2 bytes; getting the storage architecture right was more important.

                      It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                      J N 2 Replies Last reply
                      0
                      • L Lost User

                        You make a lot of assumptions.

                        It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                        C Offline
                        C Offline
                        Chris Losinger
                        wrote on last edited by
                        #13

                        WTF. if you don't know anything about the hardware that runs it, you can't make assumptions about the software.

                        L 1 Reply Last reply
                        0
                        • L Lost User

                          Well,

                          Gerry Schmitz wrote:

                          In some cases, their loop variable is an int; in others a short; in others a long.

                          Modern compilers will promote those loop variables to 32/64 bit depending on target architecture. If you are looking at old code... there were reasons to use integer BOOL for performance and 8 bit bool for smaller code-size many years ago. Optimizing compilers today make most of that pointless. I am finally getting around to reviewing that json library @code-witch keeps obsessing over. First thing I noticed was the liberal use of bool. But in the end... it does't really matter the compiler should promote some of these. Best Wishes, -David Delaune

                          H Offline
                          H Offline
                          honey the codewitch
                          wrote on last edited by
                          #14

                          I expect promotion. The reason I use things like bytes and half words is so they fit better on 8bit. I am expecting a lot out of it in terms optimization on a 32 or 64 bit machine. My code favors 8bit it as a result

                          Real programmers use butterflies

                          L 1 Reply Last reply
                          0
                          • L Lost User

                            Well,

                            Gerry Schmitz wrote:

                            In some cases, their loop variable is an int; in others a short; in others a long.

                            Modern compilers will promote those loop variables to 32/64 bit depending on target architecture. If you are looking at old code... there were reasons to use integer BOOL for performance and 8 bit bool for smaller code-size many years ago. Optimizing compilers today make most of that pointless. I am finally getting around to reviewing that json library @code-witch keeps obsessing over. First thing I noticed was the liberal use of bool. But in the end... it does't really matter the compiler should promote some of these. Best Wishes, -David Delaune

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #15

                            I have the whole application up and running and have gone through all the code and docs. They use random access binary files containing millions of doubles. Storage is / was not a problem. I thought it was an interesting mental exercise in light of some of the "performance" discussions going on. Nothing more. We can all stop "thinking" now.

                            It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                            1 Reply Last reply
                            0
                            • L Lost User

                              In looking at this JPL/Nasa code, it makes references to doing this and that for "performance". In some cases, their loop variable is an int; in others a short; in others a long. Given a choice which is best? Probably an int, unless you "need" a long. Ironic that for the sake of "storage" (2 bytes), they've sacrificed performance. [asp.net - Why should I use int instead of a byte or short in C# - Stack Overflow](https://stackoverflow.com/questions/1097467/why-should-i-use-int-instead-of-a-byte-or-short-in-c-sharp)

                              It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                              OriginalGriffO Offline
                              OriginalGriffO Offline
                              OriginalGriff
                              wrote on last edited by
                              #16

                              Depends on the processor: a lot of NASA stuff was for seriously old processors - for example the US military did use some Z80 based stuff right up to the end of the century, so it's possible NASA did as well. And like many other processors of it's age, the Z80 had eight bit and sixteen bit registers: a "tight loop" could optimise to a DJNZ operation (using an 8 bit register) or an LDI / LDD / LDIR / LDDR (using sixteen bit). If your loop needed a 32 bit integer, then machine code got a lot more complex. So variable size choice could easily have a bit effect on performance - and given the old processors ran as speed we would consider unacceptable for a digital watch these days every little helped! :laugh:

                              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!

                              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                              "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                              L 1 Reply Last reply
                              0
                              • C Chris Losinger

                                WTF. if you don't know anything about the hardware that runs it, you can't make assumptions about the software.

                                L Offline
                                L Offline
                                Lost User
                                wrote on last edited by
                                #17

                                It can run on anything with a C compiler. I could put it on my phone / watch.

                                It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                                C 1 Reply Last reply
                                0
                                • H honey the codewitch

                                  I expect promotion. The reason I use things like bytes and half words is so they fit better on 8bit. I am expecting a lot out of it in terms optimization on a 32 or 64 bit machine. My code favors 8bit it as a result

                                  Real programmers use butterflies

                                  L Offline
                                  L Offline
                                  Lost User
                                  wrote on last edited by
                                  #18

                                  Oh Well, I wish you would have commented sooner. I found a bug in your json parser but didn't want to tarnish your article comment section. :-O Let me know if you want to discuss it here and I'll go over and delete it.

                                  H 1 Reply Last reply
                                  0
                                  • OriginalGriffO OriginalGriff

                                    Depends on the processor: a lot of NASA stuff was for seriously old processors - for example the US military did use some Z80 based stuff right up to the end of the century, so it's possible NASA did as well. And like many other processors of it's age, the Z80 had eight bit and sixteen bit registers: a "tight loop" could optimise to a DJNZ operation (using an 8 bit register) or an LDI / LDD / LDIR / LDDR (using sixteen bit). If your loop needed a 32 bit integer, then machine code got a lot more complex. So variable size choice could easily have a bit effect on performance - and given the old processors ran as speed we would consider unacceptable for a digital watch these days every little helped! :laugh:

                                    "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!

                                    L Offline
                                    L Offline
                                    Lost User
                                    wrote on last edited by
                                    #19

                                    It was ported from Fortran to C in 1993; not exactly the dark ages. "High performance" update (double doubles) around 2013. [JPL Planetary and Lunar Ephemerides](https://ssd.jpl.nasa.gov/?planet\_eph\_export) (This whole thing started because I made a solar calendar and said it was "accurate"; which begged the question "how accurate", etc. Anyway, I do a lot of calcs in real-time for a simulation; ergo...)

                                    It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                                    1 Reply Last reply
                                    0
                                    • L Lost User

                                      It can run on anything with a C compiler. I could put it on my phone / watch.

                                      It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                                      C Offline
                                      C Offline
                                      Chris Losinger
                                      wrote on last edited by
                                      #20

                                      maybe it can run on anything with a C compiler ... as long as it was deliberately written to work on any OS with any CRT implementation, using no system-specific libraries, and making no assumptions about the underlying hardware. :laugh: :laugh: :laugh: the C spec only specifies minimum sizes for short, int and long. int and short must be at least 16 bits. long must be at least 32 bits. so what any of those types means in terms of storage and CPU handling (aka performance) depends on the compiler and the target architecture.

                                      L 1 Reply Last reply
                                      0
                                      • L Lost User

                                        I worked with PLC's, etc. Never had to sweat 1 or 2 bytes; getting the storage architecture right was more important.

                                        It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                                        J Offline
                                        J Offline
                                        Joan M
                                        wrote on last edited by
                                        #21

                                        Lucky you. If I choose the material to be used I never have to... but when the customer gives me the material then everything can happen.

                                        www.robotecnik.com[^] - robots, CNC and PLC programming

                                        L 1 Reply Last reply
                                        0
                                        • J Joan M

                                          Lucky you. If I choose the material to be used I never have to... but when the customer gives me the material then everything can happen.

                                          www.robotecnik.com[^] - robots, CNC and PLC programming

                                          L Offline
                                          L Offline
                                          Lost User
                                          wrote on last edited by
                                          #22

                                          The customer ordered it, the hardware company built it, I had to program it (contract). There were no choices. The hardware company used my software to debug their firmware. (Only way to avoid finger pointing).

                                          It was only in wine that he laid down no limit for himself, but he did not allow himself to be confused by it. ― Confucian Analects: Rules of Confucius about his food

                                          J 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups