erri120

Results 52 comments of erri120

Might be useful: [Best Practices on Recommendation Systems ](https://github.com/microsoft/recommenders)

Thanks for the merge, will this change be in `1.9` or some intermediate release `1.8.1`?

> Hi Erri, > > It will be released with 1.9. I can see that you put a lot of effort into the commit and I am sorry that I...

Papyrus already has the `DebugOnly` and `BetaOnly` flags for functions: > Debug-only functions may be defined by adding "DebugOnly" to the end of the function definition line. Any calls to...

The op-code for array creation requires a constant size. This is a limitation imposed by the PEX format and can only be solved by very hacky solutions. I will leave...

More infos: - https://compileroptimizations.com/category/function_inlining.htm - https://youtu.be/FnGCDLhaxKU?t=1548 - https://en.wikipedia.org/wiki/Inline_expansion

The C++ `inline` specifier is just a "suggestion" to the compiler and with every C++ compiler doing something different you are not guaranteed that the function will be inlined. However...

Automatic inlining by the optimizer will of course require a lot of fine tuning, however it is one of the most impactful optimization in any compiler regardless of language. The...

I think a big fat warning in the docs on manually forcing an inline and a warning/info when compiling should be enough to make sure people understand to use it...