#FastMath
Eine gute App für das tägliche Üben.
www.fastmath.app
#BlueLZ #KopfGPT
FastMath: Mental Math Trainer
Become a mental math genius in no time. FastMath makes mental math easy and fun - try it today!
www.fastmath.app
May 31, 2026 at 7:33 AM
be aware, if you are targetting cross platform and not just directx/hlsl then some shader compilers may act counterintuitively with NaN/Inf. Specifically, in Metal with fastmath enabled the shader compiler can treat NaN or INF as undefined behaviour. It may delete whole chunks of code
May 26, 2025 at 10:16 AM
I suspect it was an honest mistake for how that got in. Some compilers (correctly) only allow for unordered reductions if fastmath/ieee754 conformance is active
January 13, 2025 at 4:08 PM
makes sense to use fast math when ur just like deciding where to put the triangle on screen, doing super duper basic shit where everything stays bounded in nice predictable ways and don't rly care about precision or reproducibility at all but for a general-purpose API always-enabled fastmath is NUTS
July 30, 2025 at 7:55 PM
“How Does A Computer/Calculator Compute Logarithms?”, Zach Artrand (zachartrand.github.io/SoME-3-Living/).

Via HN: news.ycombinator.com/item?id=4074... (which provides important addenda)

#Calculator #Mathematics #Maths #Logarithms #TaylorSeries #NumericalMethods #NumericalAnalysis #FastMath
SoME-3-Living
Summer of Math Exposition 3 - How does a computer/calculator compute logarithms?
zachartrand.github.io
June 22, 2024 at 12:10 PM
今回の実装、速度厨なのでまだ速くしたい感ある。
numpyのufuncを作って関数をベクトル化、数値演算の制約をfastmath最適化で回避しつつJITコンパイルすれば速くなる可能性はある。ただ素のnumpyでのバッチ化matmulも相当速いので、どっちが速いかは謎。(結局0.05秒しか変わらないとかだと悲しい。)
September 7, 2024 at 8:15 AM
This looks like a fastmath error with the float, not a typical floating point error.
August 23, 2026 at 8:23 AM
May 31, 2025 at 3:23 PM
#scicloj is planning a public meetup about Signal Processing in #Clojure.

The precise agenda and date (tentative: March 2026) will be determined based on your feedback.

clojureverse.org/t/upcoming-m...
Upcoming meetup - Signal processing in Clojure - please reach out
In recent months, there has been some encouraging progress in Clojure’s story for signal processing. A lot of that is work-in-progress and will be made more visible soon: updates to the Fastmath 3 li...
clojureverse.org
January 27, 2026 at 12:56 PM
Beware of Fast-Math
https://simonbyrne.github.io/notes/fastmath/
[comments] [280 points]
June 1, 2025 at 12:03 AM
May 31, 2025 at 7:33 PM
At the very least I think this covers all mainstream desktop platforms. Might be some odd behavior if any Unreal targets don't use IEEE standard NaN (e.g. -fastmath and the like).
July 9, 2025 at 9:35 PM
Beware of Fast-Math
L: https://simonbyrne.github.io/notes/fastmath/
C: https://news.ycombinator.com/item?id=44142472
posted on 2025.05.31 at 03:05:57 (c=0, p=4)
May 31, 2025 at 7:37 AM
May 31, 2025 at 8:00 AM
… reductions if fastmath/ieee754 conformance is not active
January 13, 2025 at 4:11 PM
July 6, 2025 at 12:01 PM
💡 Summary:

サイモンのノートでは、「ファストマス」コンパイラフラグの使用に対する警告が述べられています。このフラグは、さまざまなプログラミング言語において計算速度を向上させる一方で、浮動小数点計算における不正確さを引き起こす可能性があります。彼は、この最適化に伴うリスクに関する文書が限られていることを強調しており、特にGCCやJuliaでは、`-ffast-math`や`@fastmath`のようなフラグがコンパイラにIEEE 754標準を無視させることができ、結果として不正確な結果をもたらす可能性があると指摘しています。NaNのチェックを省略したり、 (1/3)
May 31, 2025 at 7:43 PM
June 1, 2025 at 7:33 AM
May 31, 2025 at 10:35 AM