3

Is it possible to check if Blender was compiled with OpenMP? How? The installed package is

2.70+git201404250132.3b75d6c-0irie1~trusty1

user877329
  • 1,378
  • 3
  • 14
  • 30

2 Answers2

6

In the Info Editor go to Help and choose System Info. Open the internal text editor and select the created file: system-info.txt. Under build flags look for -fopenmp.

enter image description here enter image description here

Note that the build flags depend on your system. For gcc -fopenmp is needed to compile with openmp support.

user2859
  • 3,612
  • 21
  • 21
6

Probably the easiest way is to use the Python console and enter getattr(bpy.app.build_options, 'openmp')

enter image description here

sambler
  • 55,387
  • 3
  • 59
  • 192