Inline version of a function returns different value than non-inline version The 2019 Stack Overflow Developer Survey Results Are InIs floating point math broken?IEEE-754 floating-point precision: How much error is allowed?Benefits of inline functions in C++?When should I write the keyword 'inline' for a function/method?The meaning of static in C++setw within a function to return an ostreamstd::atomic_is_lock_free(shared_ptr<T>*) didn't compileWhy doesn't the istringstream eof flag become true when successfully converting a boolean string value to a bool?How to implement StringBuilder class which to be able to accept IO manipulatorsFunction overloading with different return typesProblems benchmarking simple code with googlebenchmarkC++ - Odd Reciprocal Inequivalence

Why is the Constellation's nose gear so long?

Is flight data recorder erased after every flight?

Can a rogue use sneak attack with weapons that have the thrown property even if they are not thrown?

Why do UK politicians seemingly ignore opinion polls on Brexit?

Why did Acorn's A3000 have red function keys?

What do hard-Brexiteers want with respect to the Irish border?

Why isn't airport relocation done gradually?

Did 3000BC Egyptians use meteoric iron weapons?

What does Linus Torvalds mean when he says that Git "never ever" tracks a file?

Is three citations per paragraph excessive for undergraduate research paper?

Can we generate random numbers using irrational numbers like π and e?

Do these rules for Critical Successes and Critical Failures seem fair?

Geography at the pixel level

How to type this arrow in math mode?

Is an up-to-date browser secure on an out-of-date OS?

When should I buy a clipper card after flying to OAK?

Why not take a picture of a closer black hole?

Are spiders unable to hurt humans, especially very small spiders?

Right tool to dig six foot holes?

How to answer pointed "are you quitting" questioning when I don't want them to suspect

Time travel alters history but people keep saying nothing's changed

Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?

How technical should a Scrum Master be to effectively remove impediments?

What tool would a Roman-age civilization have for the breaking of silver and other metals into dust?



Inline version of a function returns different value than non-inline version



The 2019 Stack Overflow Developer Survey Results Are InIs floating point math broken?IEEE-754 floating-point precision: How much error is allowed?Benefits of inline functions in C++?When should I write the keyword 'inline' for a function/method?The meaning of static in C++setw within a function to return an ostreamstd::atomic_is_lock_free(shared_ptr<T>*) didn't compileWhy doesn't the istringstream eof flag become true when successfully converting a boolean string value to a bool?How to implement StringBuilder class which to be able to accept IO manipulatorsFunction overloading with different return typesProblems benchmarking simple code with googlebenchmarkC++ - Odd Reciprocal Inequivalence



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








58















How can two versions of the same function, differing only in one being inline and the other one not, return different values? Here is some code I wrote today and I am not sure how it works.



#include <cmath>
#include <iostream>

bool is_cube(double r)

return floor(cbrt(r)) == cbrt(r);


bool inline is_cube_inline(double r)

return floor(cbrt(r)) == cbrt(r);


int main()

std::cout << (floor(cbrt(27.0)) == cbrt(27.0)) << std::endl;
std::cout << (is_cube(27.0)) << std::endl;
std::cout << (is_cube_inline(27.0)) << std::endl;




I would expect all outputs to be equal to 1, but it actually outputs this (g++ 8.3.1, no flags):



1
0
1


instead of



1
1
1


Edit: clang++ 7.0.0 outputs this:



0
0
0


and g++ -Ofast this:



1
1
1









share|improve this question









New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















  • 3





    Can you please provide what compiler, compiler options are you using and what machine ? Works ok for me on GCC 7.1 on Windows.

    – Diodacus
    yesterday






  • 27





    Isn't == always a bit unpredictable with floating point values?

    – 500 - Internal Server Error
    yesterday






  • 3





    related stackoverflow.com/questions/588004/…

    – user463035818
    yesterday






  • 2





    Did you set the -Ofast option, which allows such optimizations?

    – cmdLP
    yesterday






  • 4





    Compiler returns for cbrt(27.0) the value of 0x0000000000000840 while the standard library returns 0x0100000000000840. The doubles differ in 16th number after comma. My system: archlinux4.20 x64 gcc8.2.1 glibc2.28 Checked with this. Wonder if gcc or glibc is right.

    – Kamil Cuk
    yesterday


















58















How can two versions of the same function, differing only in one being inline and the other one not, return different values? Here is some code I wrote today and I am not sure how it works.



#include <cmath>
#include <iostream>

bool is_cube(double r)

return floor(cbrt(r)) == cbrt(r);


bool inline is_cube_inline(double r)

return floor(cbrt(r)) == cbrt(r);


int main()

std::cout << (floor(cbrt(27.0)) == cbrt(27.0)) << std::endl;
std::cout << (is_cube(27.0)) << std::endl;
std::cout << (is_cube_inline(27.0)) << std::endl;




I would expect all outputs to be equal to 1, but it actually outputs this (g++ 8.3.1, no flags):



1
0
1


instead of



1
1
1


Edit: clang++ 7.0.0 outputs this:



0
0
0


and g++ -Ofast this:



1
1
1









share|improve this question









New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.















  • 3





    Can you please provide what compiler, compiler options are you using and what machine ? Works ok for me on GCC 7.1 on Windows.

    – Diodacus
    yesterday






  • 27





    Isn't == always a bit unpredictable with floating point values?

    – 500 - Internal Server Error
    yesterday






  • 3





    related stackoverflow.com/questions/588004/…

    – user463035818
    yesterday






  • 2





    Did you set the -Ofast option, which allows such optimizations?

    – cmdLP
    yesterday






  • 4





    Compiler returns for cbrt(27.0) the value of 0x0000000000000840 while the standard library returns 0x0100000000000840. The doubles differ in 16th number after comma. My system: archlinux4.20 x64 gcc8.2.1 glibc2.28 Checked with this. Wonder if gcc or glibc is right.

    – Kamil Cuk
    yesterday














58












58








58


9






How can two versions of the same function, differing only in one being inline and the other one not, return different values? Here is some code I wrote today and I am not sure how it works.



#include <cmath>
#include <iostream>

bool is_cube(double r)

return floor(cbrt(r)) == cbrt(r);


bool inline is_cube_inline(double r)

return floor(cbrt(r)) == cbrt(r);


int main()

std::cout << (floor(cbrt(27.0)) == cbrt(27.0)) << std::endl;
std::cout << (is_cube(27.0)) << std::endl;
std::cout << (is_cube_inline(27.0)) << std::endl;




I would expect all outputs to be equal to 1, but it actually outputs this (g++ 8.3.1, no flags):



1
0
1


instead of



1
1
1


Edit: clang++ 7.0.0 outputs this:



0
0
0


and g++ -Ofast this:



1
1
1









share|improve this question









New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












How can two versions of the same function, differing only in one being inline and the other one not, return different values? Here is some code I wrote today and I am not sure how it works.



#include <cmath>
#include <iostream>

bool is_cube(double r)

return floor(cbrt(r)) == cbrt(r);


bool inline is_cube_inline(double r)

return floor(cbrt(r)) == cbrt(r);


int main()

std::cout << (floor(cbrt(27.0)) == cbrt(27.0)) << std::endl;
std::cout << (is_cube(27.0)) << std::endl;
std::cout << (is_cube_inline(27.0)) << std::endl;




I would expect all outputs to be equal to 1, but it actually outputs this (g++ 8.3.1, no flags):



1
0
1


instead of



1
1
1


Edit: clang++ 7.0.0 outputs this:



0
0
0


and g++ -Ofast this:



1
1
1






c++






share|improve this question









New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited yesterday









chwarr

4,27811843




4,27811843






New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









zbrojny120zbrojny120

37338




37338




New contributor




zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






zbrojny120 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







  • 3





    Can you please provide what compiler, compiler options are you using and what machine ? Works ok for me on GCC 7.1 on Windows.

    – Diodacus
    yesterday






  • 27





    Isn't == always a bit unpredictable with floating point values?

    – 500 - Internal Server Error
    yesterday






  • 3





    related stackoverflow.com/questions/588004/…

    – user463035818
    yesterday






  • 2





    Did you set the -Ofast option, which allows such optimizations?

    – cmdLP
    yesterday






  • 4





    Compiler returns for cbrt(27.0) the value of 0x0000000000000840 while the standard library returns 0x0100000000000840. The doubles differ in 16th number after comma. My system: archlinux4.20 x64 gcc8.2.1 glibc2.28 Checked with this. Wonder if gcc or glibc is right.

    – Kamil Cuk
    yesterday













  • 3





    Can you please provide what compiler, compiler options are you using and what machine ? Works ok for me on GCC 7.1 on Windows.

    – Diodacus
    yesterday






  • 27





    Isn't == always a bit unpredictable with floating point values?

    – 500 - Internal Server Error
    yesterday






  • 3





    related stackoverflow.com/questions/588004/…

    – user463035818
    yesterday






  • 2





    Did you set the -Ofast option, which allows such optimizations?

    – cmdLP
    yesterday






  • 4





    Compiler returns for cbrt(27.0) the value of 0x0000000000000840 while the standard library returns 0x0100000000000840. The doubles differ in 16th number after comma. My system: archlinux4.20 x64 gcc8.2.1 glibc2.28 Checked with this. Wonder if gcc or glibc is right.

    – Kamil Cuk
    yesterday








3




3





Can you please provide what compiler, compiler options are you using and what machine ? Works ok for me on GCC 7.1 on Windows.

– Diodacus
yesterday





Can you please provide what compiler, compiler options are you using and what machine ? Works ok for me on GCC 7.1 on Windows.

– Diodacus
yesterday




27




27





Isn't == always a bit unpredictable with floating point values?

– 500 - Internal Server Error
yesterday





Isn't == always a bit unpredictable with floating point values?

– 500 - Internal Server Error
yesterday




3




3





related stackoverflow.com/questions/588004/…

– user463035818
yesterday





related stackoverflow.com/questions/588004/…

– user463035818
yesterday




2




2





Did you set the -Ofast option, which allows such optimizations?

– cmdLP
yesterday





Did you set the -Ofast option, which allows such optimizations?

– cmdLP
yesterday




4




4





Compiler returns for cbrt(27.0) the value of 0x0000000000000840 while the standard library returns 0x0100000000000840. The doubles differ in 16th number after comma. My system: archlinux4.20 x64 gcc8.2.1 glibc2.28 Checked with this. Wonder if gcc or glibc is right.

– Kamil Cuk
yesterday






Compiler returns for cbrt(27.0) the value of 0x0000000000000840 while the standard library returns 0x0100000000000840. The doubles differ in 16th number after comma. My system: archlinux4.20 x64 gcc8.2.1 glibc2.28 Checked with this. Wonder if gcc or glibc is right.

– Kamil Cuk
yesterday













2 Answers
2






active

oldest

votes


















55














Explanation



Some compilers (notably GCC) use higher precision when evaluating expressions at compile time. If an expression depends only on constant inputs and literals, it may be evaluated at compile time even if the expression is not assigned to a constexpr variable. Whether or not this occurs depends on:



  • The complexity of the expression

  • The threshold the compiler uses as a cutoff when attempting to perform compile time evaluation

  • Other heuristics used in special cases (such as when clang elides loops)

If an expression is explicitly provided, as in the first case, it has lower complexity and the compiler is likely to evaluate it at compile time.



Similarly, if a function is marked inline, the compiler is more likely to evaluate it at compile time because inline functions raise the threshold at which evaluation can occur.



Higher optimization levels also increase this threshold, as in the -Ofast example, where all expressions evaluate to true on gcc due to higher precision compile-time evaluation.



We can observe this behavior here on compiler explorer. When compiled with -O1, only the function marked inline is evaluated at compile-time, but at -O3 both functions are evaluated at compile-time.




  • -O1: https://godbolt.org/z/u4gh0g


  • -O3: https://godbolt.org/z/nVK4So

NB: In the compiler-explorer examples, I use printf instead iostream because it reduces the complexity of the main function, making the effect more visible.



Demonstrating that inline doesn’t affect runtime evaluation



We can ensure that none of the expressions are evaluated at compile time by obtaining value from standard input, and when we do this, all 3 expressions return false as demonstrated here: https://ideone.com/QZbv6X



#include <cmath>
#include <iostream>

bool is_cube(double r)

return floor(cbrt(r)) == cbrt(r);

 
bool inline is_cube_inline(double r)

return floor(cbrt(r)) == cbrt(r);


int main()

double value;
std::cin >> value;
std::cout << (floor(cbrt(value)) == cbrt(value)) << std::endl; // false
std::cout << (is_cube(value)) << std::endl; // false
std::cout << (is_cube_inline(value)) << std::endl; // false



Contrast with this example, where we use the same compiler settings but provide the value at compile-time, resulting in the higher-precision compile-time evaluation.






share|improve this answer
































    18














    As observed, using the == operator to compare floating point values has resulted in different outputs with different compilers and at different optimization levels.



    One good way to compare floating point values is the relative tolerance test outlined in the article: Floating-point tolerances revisited.



    We first calculate the Epsilon (the relative tolerance) value which in this case would be:



    double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();


    And then use it in both the inline and non-inline functions in this manner:



    return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


    The functions now are:



    bool is_cube(double r)

    double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
    return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


    bool inline is_cube_inline(double r)

    double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
    return (std::fabs(std::round(std::cbrt(r)) - std::cbrt(r)) < Epsilon);



    Now the output will be as expected ([1 1 1]) with different compilers and at different optimization levels.



    Live demo






    share|improve this answer

























    • What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

      – Ken Thomases
      yesterday











    • @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

      – P.W
      yesterday











    • Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

      – Peter A. Schneider
      18 hours ago












    • I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

      – P.W
      18 hours ago











    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );






    zbrojny120 is a new contributor. Be nice, and check out our Code of Conduct.









    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55590324%2finline-version-of-a-function-returns-different-value-than-non-inline-version%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    55














    Explanation



    Some compilers (notably GCC) use higher precision when evaluating expressions at compile time. If an expression depends only on constant inputs and literals, it may be evaluated at compile time even if the expression is not assigned to a constexpr variable. Whether or not this occurs depends on:



    • The complexity of the expression

    • The threshold the compiler uses as a cutoff when attempting to perform compile time evaluation

    • Other heuristics used in special cases (such as when clang elides loops)

    If an expression is explicitly provided, as in the first case, it has lower complexity and the compiler is likely to evaluate it at compile time.



    Similarly, if a function is marked inline, the compiler is more likely to evaluate it at compile time because inline functions raise the threshold at which evaluation can occur.



    Higher optimization levels also increase this threshold, as in the -Ofast example, where all expressions evaluate to true on gcc due to higher precision compile-time evaluation.



    We can observe this behavior here on compiler explorer. When compiled with -O1, only the function marked inline is evaluated at compile-time, but at -O3 both functions are evaluated at compile-time.




    • -O1: https://godbolt.org/z/u4gh0g


    • -O3: https://godbolt.org/z/nVK4So

    NB: In the compiler-explorer examples, I use printf instead iostream because it reduces the complexity of the main function, making the effect more visible.



    Demonstrating that inline doesn’t affect runtime evaluation



    We can ensure that none of the expressions are evaluated at compile time by obtaining value from standard input, and when we do this, all 3 expressions return false as demonstrated here: https://ideone.com/QZbv6X



    #include <cmath>
    #include <iostream>

    bool is_cube(double r)

    return floor(cbrt(r)) == cbrt(r);

     
    bool inline is_cube_inline(double r)

    return floor(cbrt(r)) == cbrt(r);


    int main()

    double value;
    std::cin >> value;
    std::cout << (floor(cbrt(value)) == cbrt(value)) << std::endl; // false
    std::cout << (is_cube(value)) << std::endl; // false
    std::cout << (is_cube_inline(value)) << std::endl; // false



    Contrast with this example, where we use the same compiler settings but provide the value at compile-time, resulting in the higher-precision compile-time evaluation.






    share|improve this answer





























      55














      Explanation



      Some compilers (notably GCC) use higher precision when evaluating expressions at compile time. If an expression depends only on constant inputs and literals, it may be evaluated at compile time even if the expression is not assigned to a constexpr variable. Whether or not this occurs depends on:



      • The complexity of the expression

      • The threshold the compiler uses as a cutoff when attempting to perform compile time evaluation

      • Other heuristics used in special cases (such as when clang elides loops)

      If an expression is explicitly provided, as in the first case, it has lower complexity and the compiler is likely to evaluate it at compile time.



      Similarly, if a function is marked inline, the compiler is more likely to evaluate it at compile time because inline functions raise the threshold at which evaluation can occur.



      Higher optimization levels also increase this threshold, as in the -Ofast example, where all expressions evaluate to true on gcc due to higher precision compile-time evaluation.



      We can observe this behavior here on compiler explorer. When compiled with -O1, only the function marked inline is evaluated at compile-time, but at -O3 both functions are evaluated at compile-time.




      • -O1: https://godbolt.org/z/u4gh0g


      • -O3: https://godbolt.org/z/nVK4So

      NB: In the compiler-explorer examples, I use printf instead iostream because it reduces the complexity of the main function, making the effect more visible.



      Demonstrating that inline doesn’t affect runtime evaluation



      We can ensure that none of the expressions are evaluated at compile time by obtaining value from standard input, and when we do this, all 3 expressions return false as demonstrated here: https://ideone.com/QZbv6X



      #include <cmath>
      #include <iostream>

      bool is_cube(double r)

      return floor(cbrt(r)) == cbrt(r);

       
      bool inline is_cube_inline(double r)

      return floor(cbrt(r)) == cbrt(r);


      int main()

      double value;
      std::cin >> value;
      std::cout << (floor(cbrt(value)) == cbrt(value)) << std::endl; // false
      std::cout << (is_cube(value)) << std::endl; // false
      std::cout << (is_cube_inline(value)) << std::endl; // false



      Contrast with this example, where we use the same compiler settings but provide the value at compile-time, resulting in the higher-precision compile-time evaluation.






      share|improve this answer



























        55












        55








        55







        Explanation



        Some compilers (notably GCC) use higher precision when evaluating expressions at compile time. If an expression depends only on constant inputs and literals, it may be evaluated at compile time even if the expression is not assigned to a constexpr variable. Whether or not this occurs depends on:



        • The complexity of the expression

        • The threshold the compiler uses as a cutoff when attempting to perform compile time evaluation

        • Other heuristics used in special cases (such as when clang elides loops)

        If an expression is explicitly provided, as in the first case, it has lower complexity and the compiler is likely to evaluate it at compile time.



        Similarly, if a function is marked inline, the compiler is more likely to evaluate it at compile time because inline functions raise the threshold at which evaluation can occur.



        Higher optimization levels also increase this threshold, as in the -Ofast example, where all expressions evaluate to true on gcc due to higher precision compile-time evaluation.



        We can observe this behavior here on compiler explorer. When compiled with -O1, only the function marked inline is evaluated at compile-time, but at -O3 both functions are evaluated at compile-time.




        • -O1: https://godbolt.org/z/u4gh0g


        • -O3: https://godbolt.org/z/nVK4So

        NB: In the compiler-explorer examples, I use printf instead iostream because it reduces the complexity of the main function, making the effect more visible.



        Demonstrating that inline doesn’t affect runtime evaluation



        We can ensure that none of the expressions are evaluated at compile time by obtaining value from standard input, and when we do this, all 3 expressions return false as demonstrated here: https://ideone.com/QZbv6X



        #include <cmath>
        #include <iostream>

        bool is_cube(double r)

        return floor(cbrt(r)) == cbrt(r);

         
        bool inline is_cube_inline(double r)

        return floor(cbrt(r)) == cbrt(r);


        int main()

        double value;
        std::cin >> value;
        std::cout << (floor(cbrt(value)) == cbrt(value)) << std::endl; // false
        std::cout << (is_cube(value)) << std::endl; // false
        std::cout << (is_cube_inline(value)) << std::endl; // false



        Contrast with this example, where we use the same compiler settings but provide the value at compile-time, resulting in the higher-precision compile-time evaluation.






        share|improve this answer















        Explanation



        Some compilers (notably GCC) use higher precision when evaluating expressions at compile time. If an expression depends only on constant inputs and literals, it may be evaluated at compile time even if the expression is not assigned to a constexpr variable. Whether or not this occurs depends on:



        • The complexity of the expression

        • The threshold the compiler uses as a cutoff when attempting to perform compile time evaluation

        • Other heuristics used in special cases (such as when clang elides loops)

        If an expression is explicitly provided, as in the first case, it has lower complexity and the compiler is likely to evaluate it at compile time.



        Similarly, if a function is marked inline, the compiler is more likely to evaluate it at compile time because inline functions raise the threshold at which evaluation can occur.



        Higher optimization levels also increase this threshold, as in the -Ofast example, where all expressions evaluate to true on gcc due to higher precision compile-time evaluation.



        We can observe this behavior here on compiler explorer. When compiled with -O1, only the function marked inline is evaluated at compile-time, but at -O3 both functions are evaluated at compile-time.




        • -O1: https://godbolt.org/z/u4gh0g


        • -O3: https://godbolt.org/z/nVK4So

        NB: In the compiler-explorer examples, I use printf instead iostream because it reduces the complexity of the main function, making the effect more visible.



        Demonstrating that inline doesn’t affect runtime evaluation



        We can ensure that none of the expressions are evaluated at compile time by obtaining value from standard input, and when we do this, all 3 expressions return false as demonstrated here: https://ideone.com/QZbv6X



        #include <cmath>
        #include <iostream>

        bool is_cube(double r)

        return floor(cbrt(r)) == cbrt(r);

         
        bool inline is_cube_inline(double r)

        return floor(cbrt(r)) == cbrt(r);


        int main()

        double value;
        std::cin >> value;
        std::cout << (floor(cbrt(value)) == cbrt(value)) << std::endl; // false
        std::cout << (is_cube(value)) << std::endl; // false
        std::cout << (is_cube_inline(value)) << std::endl; // false



        Contrast with this example, where we use the same compiler settings but provide the value at compile-time, resulting in the higher-precision compile-time evaluation.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited yesterday

























        answered yesterday









        Jorge PerezJorge Perez

        2,061719




        2,061719























            18














            As observed, using the == operator to compare floating point values has resulted in different outputs with different compilers and at different optimization levels.



            One good way to compare floating point values is the relative tolerance test outlined in the article: Floating-point tolerances revisited.



            We first calculate the Epsilon (the relative tolerance) value which in this case would be:



            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();


            And then use it in both the inline and non-inline functions in this manner:



            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            The functions now are:



            bool is_cube(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            bool inline is_cube_inline(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::round(std::cbrt(r)) - std::cbrt(r)) < Epsilon);



            Now the output will be as expected ([1 1 1]) with different compilers and at different optimization levels.



            Live demo






            share|improve this answer

























            • What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

              – Ken Thomases
              yesterday











            • @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

              – P.W
              yesterday











            • Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

              – Peter A. Schneider
              18 hours ago












            • I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

              – P.W
              18 hours ago















            18














            As observed, using the == operator to compare floating point values has resulted in different outputs with different compilers and at different optimization levels.



            One good way to compare floating point values is the relative tolerance test outlined in the article: Floating-point tolerances revisited.



            We first calculate the Epsilon (the relative tolerance) value which in this case would be:



            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();


            And then use it in both the inline and non-inline functions in this manner:



            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            The functions now are:



            bool is_cube(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            bool inline is_cube_inline(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::round(std::cbrt(r)) - std::cbrt(r)) < Epsilon);



            Now the output will be as expected ([1 1 1]) with different compilers and at different optimization levels.



            Live demo






            share|improve this answer

























            • What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

              – Ken Thomases
              yesterday











            • @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

              – P.W
              yesterday











            • Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

              – Peter A. Schneider
              18 hours ago












            • I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

              – P.W
              18 hours ago













            18












            18








            18







            As observed, using the == operator to compare floating point values has resulted in different outputs with different compilers and at different optimization levels.



            One good way to compare floating point values is the relative tolerance test outlined in the article: Floating-point tolerances revisited.



            We first calculate the Epsilon (the relative tolerance) value which in this case would be:



            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();


            And then use it in both the inline and non-inline functions in this manner:



            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            The functions now are:



            bool is_cube(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            bool inline is_cube_inline(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::round(std::cbrt(r)) - std::cbrt(r)) < Epsilon);



            Now the output will be as expected ([1 1 1]) with different compilers and at different optimization levels.



            Live demo






            share|improve this answer















            As observed, using the == operator to compare floating point values has resulted in different outputs with different compilers and at different optimization levels.



            One good way to compare floating point values is the relative tolerance test outlined in the article: Floating-point tolerances revisited.



            We first calculate the Epsilon (the relative tolerance) value which in this case would be:



            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();


            And then use it in both the inline and non-inline functions in this manner:



            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            The functions now are:



            bool is_cube(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::floor(std::cbrt(r)) - std::cbrt(r)) < Epsilon);


            bool inline is_cube_inline(double r)

            double Epsilon = std::max(std::cbrt(r), std::floor(std::cbrt(r))) * std::numeric_limits<double>::epsilon();
            return (std::fabs(std::round(std::cbrt(r)) - std::cbrt(r)) < Epsilon);



            Now the output will be as expected ([1 1 1]) with different compilers and at different optimization levels.



            Live demo







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited yesterday

























            answered yesterday









            P.WP.W

            18.5k41758




            18.5k41758












            • What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

              – Ken Thomases
              yesterday











            • @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

              – P.W
              yesterday











            • Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

              – Peter A. Schneider
              18 hours ago












            • I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

              – P.W
              18 hours ago

















            • What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

              – Ken Thomases
              yesterday











            • @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

              – P.W
              yesterday











            • Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

              – Peter A. Schneider
              18 hours ago












            • I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

              – P.W
              18 hours ago
















            What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

            – Ken Thomases
            yesterday





            What's the purpose of the max() call? By definition, floor(x) is less than or equal to x, so max(x, floor(x)) will always equal x.

            – Ken Thomases
            yesterday













            @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

            – P.W
            yesterday





            @KenThomases: In this particular case, where one argument to max is just the floor of the other, it is not required. But I considered a general case where arguments to max can be values or expressions which are independent of each other.

            – P.W
            yesterday













            Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

            – Peter A. Schneider
            18 hours ago






            Shouldn't operator==(double, double) do exactly that, check for the difference being smaller than a scaled epsilon? About 90% of floating point related questions on SO wouldn't exist then.

            – Peter A. Schneider
            18 hours ago














            I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

            – P.W
            18 hours ago





            I think it is better if the user gets to specify the Epsilon value depending on their particular requirement.

            – P.W
            18 hours ago










            zbrojny120 is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            zbrojny120 is a new contributor. Be nice, and check out our Code of Conduct.












            zbrojny120 is a new contributor. Be nice, and check out our Code of Conduct.











            zbrojny120 is a new contributor. Be nice, and check out our Code of Conduct.














            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55590324%2finline-version-of-a-function-returns-different-value-than-non-inline-version%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

            Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

            Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form