Bug Report.md (2744B)
1 <!-- 2 Please read this! 3 4 Before opening a new issue, make sure to search for keywords in the issues 5 filtered by "bug::confirmed" or "bug::unconfirmed" and "bugzilla" label: 6 7 - https://gitlab.com/libeigen/eigen/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bug%3A%3Aconfirmed 8 - https://gitlab.com/libeigen/eigen/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bug%3A%3Aunconfirmed 9 - https://gitlab.com/libeigen/eigen/-/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bugzilla 10 11 and verify the issue you're about to submit isn't a duplicate. --> 12 13 ### Summary 14 <!-- Summarize the bug encountered concisely. --> 15 16 ### Environment 17 <!-- Please provide your development environment here --> 18 - **Operating System** : Windows/Linux 19 - **Architecture** : x64/Arm64/PowerPC ... 20 - **Eigen Version** : 3.3.9 21 - **Compiler Version** : Gcc7.0 22 - **Compile Flags** : -O3 -march=native 23 - **Vector Extension** : SSE/AVX/NEON ... 24 25 ### Minimal Example 26 <!-- If possible, please create a minimal example here that exhibits the problematic behavior. 27 You can also link to [godbolt](https://godbolt.org). But please note that you need to click 28 the "Share" button in the top right-hand corner of the godbolt page where you reproduce the sample 29 code to get the share link instead of in your browser address bar. 30 31 You can read [the guidelines on stackoverflow](https://stackoverflow.com/help/minimal-reproducible-example) 32 on how to create a good minimal example. --> 33 34 ```cpp 35 //show your code here 36 ``` 37 38 ### Steps to reproduce 39 <!-- Describe how one can reproduce the issue - this is very important. Please use an ordered list. --> 40 41 1. first step 42 2. second step 43 3. ... 44 45 ### What is the current *bug* behavior? 46 <!-- Describe what actually happens. --> 47 48 ### What is the expected *correct* behavior? 49 <!-- Describe what you should see instead. --> 50 51 ### Relevant logs 52 <!-- Add relevant code snippets or program output within blocks marked by " ``` " --> 53 54 <!-- OPTIONAL: remove this section if you are not reporting a compilation warning issue.--> 55 ### Warning Messages 56 <!-- Show us the warning messages you got! --> 57 58 <!-- OPTIONAL: remove this section if you are not reporting a performance issue. --> 59 ### Benchmark scripts and results 60 <!-- Please share any benchmark scripts - either standalone, or using [Google Benchmark](https://github.com/google/benchmark). --> 61 62 ### Anything else that might help 63 <!-- It will be better to provide us more information to help narrow down the cause. 64 Including but not limited to the following: 65 - lines of code that might help us diagnose the problem. 66 - potential ways to address the issue. 67 - last known working/first broken version (release number or commit hash). --> 68 69 - [ ] Have a plan to fix this issue.