Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Examples of things that crash or hang the visualizer #6

Open
deplinenoise opened this issue Nov 30, 2018 · 1 comment
Open

Examples of things that crash or hang the visualizer #6

deplinenoise opened this issue Nov 30, 2018 · 1 comment
Labels
bug Something isn't working
Projects

Comments

@deplinenoise
Copy link

deplinenoise commented Nov 30, 2018

This example makes it spin forever:

#include <x86intrin.h>

 __m256 dot8(__m256 a0, __m256 a1, __m256 a2, __m256 b0, __m256 b1, __m256 b2)
{
  return _mm256_add_ps(
    _mm256_mul_ps(a0, b0), _mm256_add_ps(_mm256_mul_ps(a1, b1), _mm256_mul_ps(a2, b2)));
}

This example makes it load a white webpage:

#include <x86intrin.h>
__m128i a;
__m128i Foo() { return a; }
@piotte13
Copy link
Owner

It does indeed crash.

I'll look into that as soon as possible!

Thanks

@piotte13 piotte13 added this to To do in DEV via automation Nov 30, 2018
@piotte13 piotte13 added the bug Something isn't working label Nov 30, 2018
@piotte13 piotte13 moved this from To do to In progress in DEV Dec 3, 2018
@piotte13 piotte13 moved this from In progress to To do in DEV Dec 4, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
DEV
  
To do
Development

No branches or pull requests

2 participants