Cycles AVX kernel detection leads to crash when CPU does support AVX but OS does NOT #38815

Closed
opened 2014-02-24 20:39:28 +01:00 by Martijn Berger · 14 comments
Member

System Information
Any OS without AVX support (windows 7 pre SP1 and Vista 64 are most common with this)

Blender Version
Broken: Any build after AVX kernel was introduced

Short description of error
http://insufficientlycomplicated.wordpress.com/2011/11/07/detecting-intel-advanced-vector-extensions-avx-in-visual-studio/

Exact steps for others to reproduce the error
Open Blender try to render

**System Information** Any OS without AVX support (windows 7 pre SP1 and Vista 64 are most common with this) **Blender Version** Broken: Any build after AVX kernel was introduced **Short description of error** http://insufficientlycomplicated.wordpress.com/2011/11/07/detecting-intel-advanced-vector-extensions-avx-in-visual-studio/ **Exact steps for others to reproduce the error** Open Blender try to render
Author
Member

Changed status to: 'Open'

Changed status to: 'Open'
Martijn Berger self-assigned this 2014-02-24 20:39:28 +01:00
Author
Member

Added subscriber: @MartijnBerger

Added subscriber: @MartijnBerger
Author
Member

Possible fix

Possible fix
Author
Member

Added subscribers: @ThomasDinges, @brecht

Added subscribers: @ThomasDinges, @brecht
Author
Member

Tested on OS 10.9.1/macbook pro 2013.

With patch still detects AVX successful

Tested on OS 10.9.1/macbook pro 2013. With patch still detects AVX successful
Author
Member

The final check need to be (xcr_feature_mask & 0x6) == 0x6.

Tested also on linux x64 and windows x64 and for the true positive case the check still works on all platforms it seems

The final check need to be (xcr_feature_mask & 0x6) == 0x6. Tested also on linux x64 and windows x64 and for the true positive case the check still works on all platforms it seems
Author
Member

llvm does this:

  static bool OSHasAVXSupport() {
#if defined(__GNUC__)
  *Check xgetbv; this uses a .byte sequence instead of the instruction* directly because older assemblers do not include support for xgetbv and
    // there is no easy way to conditionally compile based on the assembler used.
    int rEAX, rEDX;
    __asm__ (".byte 0x0f, 0x01, 0xd0" : "=a" (rEAX), "=d" (rEDX) : "c" (0));
#elif defined(_MSC_FULL_VER) && defined(_XCR_XFEATURE_ENABLED_MASK)
    unsigned long long rEAX = _xgetbv(_XCR_XFEATURE_ENABLED_MASK);
#else
    int rEAX = 0; // Ensures we return false
#endif
    return (rEAX & 6) == 6;
  }

If CPUID indicates support for XSAVE, XRESTORE and AVX, and XGETBV indicates that the AVX registers will be saved and restored on context

// switch, then we have full AVX support.
const unsigned AVXBits = (1 << 27) | (1 << 28);
bool HasAVX = ((ECX & AVXBits) == AVXBits) && OSHasAVXSupport();
llvm does this: ``` static bool OSHasAVXSupport() { ``` #if defined(__GNUC__) *Check xgetbv; this uses a .byte sequence instead of the instruction* directly because older assemblers do not include support for xgetbv and ``` // there is no easy way to conditionally compile based on the assembler used. int rEAX, rEDX; __asm__ (".byte 0x0f, 0x01, 0xd0" : "=a" (rEAX), "=d" (rEDX) : "c" (0)); ``` #elif defined(_MSC_FULL_VER) && defined(_XCR_XFEATURE_ENABLED_MASK) ``` unsigned long long rEAX = _xgetbv(_XCR_XFEATURE_ENABLED_MASK); ``` #else ``` int rEAX = 0; // Ensures we return false ``` #endif ``` return (rEAX & 6) == 6; } ``` *If CPUID indicates support for XSAVE, XRESTORE and AVX, and XGETBV* indicates that the AVX registers will be saved and restored on context ``` // switch, then we have full AVX support. const unsigned AVXBits = (1 << 27) | (1 << 28); bool HasAVX = ((ECX & AVXBits) == AVXBits) && OSHasAVXSupport();
Author
Member

make asm more safe

make asm more safe
Member

Added subscriber: @Lockal

Added subscriber: @Lockal

The latest patch looks good to me.

Only thing I would change is to replace || false by != 0 for consistency with the lines above it.

The latest patch looks good to me. Only thing I would change is to replace `|| false` by `!= 0` for consistency with the lines above it.

This issue was referenced by blender/blender-addons-contrib@ef73d547cc

This issue was referenced by blender/blender-addons-contrib@ef73d547cc7c663ad180721094c81b3c81482ac3

This issue was referenced by ef73d547cc

This issue was referenced by ef73d547cc7c663ad180721094c81b3c81482ac3
Author
Member

Changed status from 'Open' to: 'Resolved'

Changed status from 'Open' to: 'Resolved'
Author
Member

Closed by commit ef73d547cc.

Closed by commit ef73d547cc.
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
4 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#38815
No description provided.