Blender käännökset

Tällä sivulla on Blenderin kehitteellä olevan version OpenMP ja CUDA -valmiita Windows-käännöksiä.

Saatavilla on kaksi käännöstä: 64-bittinen, sekä 32-bittinen versio vanhemmille koneille.

Yleistä

  • Käännetty Visual Studio 2013 kääntäjällä
  • Sisältävät CUDA binäärit kaikille virallisesti tuetuille laitteille
  • Käyttää OpenMP -kirjastoa simulaatioiden säikeistämiseksi
  • Pakattu 7-zip tiedostomuodolla latauskoon pienentämiseksi

Git

Viimeisin Git "master" muutos: Revision 12f0dc3 by Hans Goudey 4175 h ago.

Lataukset

Windows Blender 2.71.6 Master (32-bit + 64-bit)
Päiväys: 17.09.2014
Blender Git Master

Virallisen Git Master -kehityshaaran käännös. Tukee OpenMP, OSL ja CUDA tekniikoita.

Seuraavan julkaisun kehitystavoitteet

Viimeisimmät "master"-version muutokset







(Kommentteja, kysymyksiä tai keskustelua Blenderin käännöksistä tai muusta aiheeseen liittyvästä.)

English MiikaH
15.09.2009 11:56
Hi,

What config file are you talking about? All important optimization flags are listed in the build info.

Your CPU doesn't support SSE4.1 but you can use SSE2 builds. (The additional performance in a special SSE3 build is insignificant.)
English francois
15.09.2009 17:27
I was talking about user-config.py, aren't you using one ?

I don't really understand the flags though, not sure what every one does, but for sure I'd like to compile the best optimized build with openMP enable and LargeAddressAware if possible

thank you
English MiikaH
15.09.2009 17:48
Here is a slightly modified version of the user-config I'm using for SSE4.1 builds:
https://miikahweb.com/other/user-config_highopti.py

I think you can just remove the SSE4 flag. About LAA, I'm not sure whether it works that way or not. (It's not stated in build description so... ;p)
English francois
15.09.2009 18:46
Hey thx man that's really nice of you !
this is the error I got :

scons: Building targets ...
Compiling ==> 'AUD_Buffer.cpp'
cc1plus.exe: error: invalid option `ssse3'
cc1plus.exe: error: unrecognized command line option "-fopenmp"
cc1plus.exe: error: unrecognized command line option "-fopenmp"
cc1plus.exe: error: unrecognized command line option "-fopenmp"
intern\audaspace\intern\AUD_Buffer.cpp:1: error: bad value (core2) for -march= switch
intern\audaspace\intern\AUD_Buffer.cpp:1: error: bad value (core2) for -mtune= switch
scons: *** [C:\blender\build\win32-mingw\intern\audaspace\intern\AUD_Buffer.o] Error 1
scons: building terminated because of errors.


English MiikaH
15.09.2009 20:02
OpenMP is only supported in GCC 4.2 or later. Same thing with ssse3 and core2 settings.

You can download a MinGW that uses the newest GCC (4.4.1) here:
http://www.tdragon.net/recentgcc/
(Bundled Installer)

You might have to reinstall SCONS to use this new MinGW. However, compiling with older GCC 3.x should work without OpenMP, ssse3 and using -march/tune=generic instead of core2.
English francois
15.09.2009 22:14
ok see, now YOU made my day !!! THANK YOU SO MUCH !
even I still don't understand all the flag though. it compile fine.
That's too bad we don't find too much information about that on the wiki.
You seem to manage this thing, you should write a doc for it on the wiki, I'm sure there is a lot of guy in my situation looking for more information about scons without having to read the doc, because I tried and when you don't know what you are looking for that kind of hard, plus knowing the difference between ccflag and cfflag, and which one goes with which O_O

anyway that was really nice though !

Thanks again
English francois
21.12.2009 11:05
it doesn't seems to like this line :

LLIBS = ['-lgomp', '-lpthread']
English MiikaH
29.12.2009 08:36
Sorry but SSE4 isn't possible with VC++ compiler and that's the only 64-bit one I have.
English Steve Boyer
01.05.2010 17:50
Hi Miika,

When I try to set my domain cube to volume to get a smoke render using your recent Win-32 builds, Blender crashes.

Not so with the 27226 build from Blender.org.

Confirm?
English MiikaH
01.05.2010 17:56
Recently I started to have similiar issues too. Crashing when rendering. I believe it's a bug in current SVN.

However it doesn't crash if I set rendering "Display" to be "Image Editor" instead of default "Full Screen". Try if that works for you too.
English Steve Boyer
01.05.2010 18:03
Still crashes, without rendering.

Just assigning the volume material crashes out Blender.

Wire, Halo, and Surface material types are ok -- just not Volume.
English MiikaH
01.05.2010 18:11
In that case, no issues here. Changing material settings works perfectly. So can't help you.

But if you already haven't tried, you can try another build (sse2,sse4,x64). And also try extracting these builds to a new directory. (In case you extracted it over another build. Because old settings etc. can cause issues.)
English Juang3d
26.07.2010 17:03
Hi Miikah, thanks for your build, now i understand pretty well why you cannot compile an X64 version of blender with sse4.2.

Actually i'm trying to compile myself with MinGW, i succeed, but you have a lot more performance than me when it is about smoke simulation.

Can you share your way of compiling blender? i've tried also MSVC Exoress 2008, but i don't get your results, can you explain a bit more (not a complete tutorial, only the key things, no matter if it's with MinGW (now i'm trying to compile with the compiler you posted, TDM-GCC and with your user-config.py but i don't get your results, instead i get the error 0xc00000005 everytime i try to run blender.exe)

Thanks for your help, compiling blender is great and very exciting for me :)

Cheers.
English MiikaH
26.07.2010 17:15
@Juang3d

There is really nothing to share with my settings. I'm currently compiling with MSVS 2008 using default settings. You should note that MSVC Express doesn't support OpenMP so that's most likely the reason your build is slower.

And about MinGW builds: I don't do those anymore because MinGW always had strange errors, especially when updating MinGW / GCC version. That error you mentioned appeared after GCC 4.5.0. Yet it was actually slower than Visual C++.
English Juang3d
26.07.2010 17:36
So it's better to build with MSVC 2008 than with MinGW in the latest version?

Ok, i'll try, do you use CMake? and do you use some optimization settings like large addres or something?

I tried to use optimizations with CMake, but i'm not sure where to put it (also cpu optimizations like match:core2 and such things) maybe is not possible or is not needed, thanks for your help, i'm new to this :)

Also thanks for working in one of the most needed features of blender fluid simulations, wetmaps! knowing that you are working on this are great news!!

Thanks!

Cheers.
English MiikaH
26.07.2010 17:52
"So it's better to build with MSVC 2008 than with MinGW in the latest version?"

If you have other VC than the limited "express" one then it's faster.

However, you can always try earlier MinGW version (GCC 4.4) from TDM: http://sourceforge.net/downloads/tdm-gcc/
It should work without that "0xc00000005" error. :)
English Juang3d
27.07.2010 20:15
I had no luck with the GCC 4.4 compilation, i'm not able to make tdm-gcc 4.4.1 working i don't know why, but i have a MSVC Express 2008 working perfectly, it's a shame that it does not support x64 or OpenMP :p and it's too expensive to acquire a license only for that (800€), so i'll stick with this until GCC 4.5 is working, i hope it's soon.

Cheers and thanks for your help :)
English MiikaH
01.08.2010 20:02
Juang3d: I have already forwarded your report to Genscher and it will be fixed when it will be. I don't know how to fix it.

And I hid your comment because this isn't right place to report bugs. Use email next time.
English Juang3d
01.08.2010 20:06
Ok, sorry for the inconvenience.

Where should i post bugs, so i can post by myself?

Thanks for reporting it.

Cheers.


English MiikaH
01.08.2010 20:12
Juang3d:
The official way to report bugs is Blender Bug Tracker: http://projects.blender.org/tracker/index.php?group_id=9.

But don't expect it to be fast. :p
English Juang3d
01.08.2010 20:32
One more time, thanks.

It seems that there is a bigger bug there, the material editor is not working for me, no matters if it's a MinGW build or a MSVC build.

I'll wait until this is solved :)

Cheers.
English Juang3d
01.08.2010 20:59
I was lucky, thanks for reporting the bug, it's already solved in revision 30948 :D

I'm happy!!!

Cheers.
English Licuadora
22.09.2010 02:00
StarStarStarStarDark Star
Hello Mr. MiikaH.
Do you have a Linux version?
I am no good compiling, can you do a tutorial about that?
All I want is to test the new SmallLuxGPU from LuxRay.
And it would be cool to have it optimized for my CPU or system overall.
English MiikaH
22.09.2010 21:45
@Evan J

My smoke patch is already in Blender trunk SVN. So you don't need a patch anymore, just get a recent build.
English MiikaH
23.09.2010 16:18
There seems to be one 64-bit Linux build on GraphicAll.org. But because I rarely use Linux, I'm not gonna build those myself.
English PerfectionCat
28.09.2010 01:04
Hello.
I am embarrassed because it doesn't take the following error though it tries to mount your made DynamicPaint.
Thank you very much if there is advice.
It questions with the translation software because English is inexperienced and pardon here, please.

MY Environment:
WindowsXP SP3
VisualC++2008ExpressEdition
Blender Source (Base):2.54b Release Source
2010-09-27 SVN Download
-->Error Message
rna_rna.lib(rna_object_gen.obj) : error LNK2001: "_RNA_DynamicPaintCanvasSettings"
rna_rna.lib(rna_modifier_gen.obj) : error LNK2001: "_RNA_DynamicPaintCanvasSettings"
rna_rna.lib(rna_modifier_gen.obj) : error LNK2001: "_RNA_DynamicPaintPainterSettings"
..\..\..\install\msvc_9\blender.exe : fatal error LNK1120:
English PerfectionCat
28.09.2010 04:07
I'm sorry.
It was possible to solve it for myself.
It did because of the thing that rna_dynamicpaint_gen.c generated with RNA was not added to the project.
It fired.
English PerfectionCat
29.09.2010 06:31
Hello.
DynamicPaint can be mounted, and it tries variously.
It uses it can the color be moved from Canvas to Canvas though it thought?
For instance, the handkerchief becomes dirty when wiping it with the handkerchief in mud as for the dirty face.
English PerfectionCat
22.10.2010 01:47
The icon registration of Modifier window has come off.
English George
09.11.2010 14:19
Hi, I'm trying to apply your 1.08 patch to trunk r32964, but since I have never applied a patch before I might be doing something wrong: the build fails because of these 4 errors:

bf_editor_physics.lib(physics_ops.obj) : error LNK2019: unresolved external symbol _DPAINT_OT_bake referenced in function _operatortypes_dynamicpaint
bf_modifiers.lib(MOD_util.obj) : error LNK2001: unresolved external symbol _modifierType_DynamicPaint
bf_rna.lib(rna_modifier_gen.obj) : error LNK2019: unresolved external symbol _dynamicPaint_Modifier_createType referenced in function _rna_DynamicPaint_set_type
bf_rna.lib(rna_modifier_gen.obj) : error LNK2019: unresolved external symbol _dynamicPaint_Modifier_free referenced in function _rna_DynamicPaint_set_type

(I'm using CMake with options: Buildinfo,FFMpeg,Install,MOD_Boolean,MOD_Decimate,MOD_Fluid,OpenMP,Python,Python_Install,RayOptimization)

Could you please give me a hint ?
English Tom
09.12.2010 08:07
Could you tell me if I have to compile the Blender on my own to utilise milticore? I've downloaded an openmp svn version from graphicall several times, but it always uses only one core (have Quad Core). What should I do to enable openmp?
English MiikaH
09.12.2010 08:11
@Tom

It depends on what you are doing. Only some parts of Blender can utilize multiple cores, so even with OpenMP enabled build there are many tasks that simply use one core.

Things like smoke or dynamic paint can use multicores (through OpenMP) quite well, but you still shouldn't expect 100% CPU usage. :p
English Tom
09.12.2010 08:30
I've tried smoke sim, particle system and cloth sim. All of them used max 25% of my processor power. Thanks for quick response :)
English BlenderManiac
29.12.2010 18:10
Hi MikaH Thanks for your patch and work. Im noob in building and patching blender. So i patched copy of my blender svn with Tortoise svn and hi fetching some files to previous revision, so question can i update that patched copy with svn? Regards and Happy New Year
English Guido
20.01.2011 04:04
Hi MikaH i love your dynamic paint. is there any way to get a new OSX 64bit build
or instructions on how to add dynamic paint code to a new builds for mac thank you son much.
English Aake
25.03.2011 07:40
Morot MiikaH

I have compilen Wine in Ubuntu 10.10 - both 32 ja 64-bit.
Then i try to run blender in there.
Some serious problem with VC2008 runtime librarys.
Any idea to void these libraries.
I'am running rendering farm and window$ blender is only way.
Another problem is MESA errors. Blender loads some OpenGL code: blender -b scene.blend ... ... gives error about Mesa drivers.
Is it possible to compile blender totaly without GUI ???

Best regards

Aake / Finland

English Eonmach R
23.04.2011 02:33
thanks for the builds, your dynamic paint patch is out of this world, really, hope to see it in the trunk, but if not, I always will come back and seek for your awesome builds...

thanks for your development.

English TheElwolf
02.05.2011 20:04
Hi. This Dynamic Paint tool seem awesome. But alas I cant use it because it's only on Windows. Is it possible for you to build a blender 2.57b with both Dynamic Paint and Bmesh ? (Bmesh is already available for mac though) By the way is your vertex group painting tests going well enough for us to see it implemented in your Dynamic P tool anytime soon?

Thanks for all the time you're inversing on this ...and other projects -iWave- :)
English Germanny
15.11.2011 17:44
Thanks for your outstanding work!
BTW: Cycles r41844 did not work w. my Nvidia 9800GT + GPU,Cuda or OpenCL.

Best wishes,
G.
English MiikaH
15.11.2011 18:01
@Germanny

Blender officially supports GPUs with "compute capability" 1.3 or higher. (Atm. 1.3, 2.0 and 2.1)
http://developer.nvidia.com/cuda-gpus
Your card has 1.0. :p

It would be possible to enable CUDA for lower versions on my builds but that'd be slow and have some features disabled.
English Germanny
15.11.2011 20:39
@Miika
Thx for the info!
Sad for me :/


English Jesus
19.04.2012 22:58
It seems the link is broken for Trunk win 31 & 64.
Server not Found :(
English aneyevuproduction
19.05.2012 16:02
Hia are these builds built with jemalloc
and would these builds utilize my 16gb ram
as well as the rest of my settup which
AMD 1055t x6
AMD radeon 6950 2gb
English eon
01.06.2012 06:06
Hi, awesome stuff, but your last few 32bit builds lack the full screen button on top!!!

English mike
15.10.2012 20:46
yo miika you seam to know about this stuff, if i have alot of builds in different places (downloads and program 86 folders)is that a problem.im running windows7 pro, i7,amd5450. 64 bit.
English Larry Phillips
27.10.2012 23:31
Hey Miika I like your builds and they are often newer release than available at buildbot.

But there is a frequent issue with your win32 download that has been occurring the past few weeks. Today (r51691 win32) is the same issue again... can't download. The download page says "Error! Invalid file".

Thanks.
-LP
English MiikaH
27.10.2012 23:56
@Larry:
Thanks for reporting the issue. It should work now. :)
English Nicolai
19.12.2012 14:11
Agony. Despair. Fetal position.
So I used that latest build, but I got still no "Use object material". I managed to move one object over another, paint is running down, but blurry. Like the canvas is a paper tissue. I tried vertex coloring on an insanly subdivided canvas, I tried baking to an image sequence.
Still no wet painting running down the canvas. I had the idea to use the glossy material of my brush, but can't find that button. I followed your guides and bazillions of tutorials, but no cookie. What am I doing wrong?
English Todd McIntosh
21.12.2012 13:51
Hi Miika, love the new results from the latest round of smoke sime work that you did!

I'm trying to figure a way to bake a smoke sim and then use it multiple times via instancing. This seems to work in the viewport, but in the render, only the original sim in the original location renders. Is there any way to accomplish this?

The scene I'm trying to attempt is a hall full of burning torches. It would be so helpful if I only had to sim one torch and then instance the rest of them from the same bake files. Any ideas?

Thanks.
English jasonhan
07.01.2013 20:56
I tried launching 2.65.5 Windows 64-bit build on my 4-core and it gives a "Application has failed to start because its side-by-side configuration is incorrect." error.nWhat does this mean. On the other hand, I loaded the 2.65.5 Windows 64-bit on my laptop which is less powerful and works just fine. Please help. I need to get it to work on the 4-core desktop. Thanks. My email address is: jason.c.w.han@gmail.com
English Juergen
20.03.2013 13:57
Hi Miika,

you inspired me to try building blender myself. I still use VC++ 2008 but I'd like to try building blender with VS 2012 express (as it supports OpenMP and has this nice auto vectorizing thingy). Unfortunately I have problems compiling the 3rd party prerequisites like OpenimageIO etc. do you know of any documentaion on this?
English mike kelly
24.03.2013 05:56
could you please put the newest questions on top. Im reeeeaally gettin bored with having to scroll down to see if there's a reply to a question i've psted. not that there's ever an one.guess im not from the right country. been coming to this site for a while never a responce. ow well . happy blending
English mike kelly
24.03.2013 06:00
im mean come on you have a question from 2009 up there
English ymtaufik
08.04.2013 01:00
Hi Mika, could you help for old card (cuda version sm_12), win 32 ?.

thanks in advance
English MiikaH
30.04.2013 18:44
@earthdesign Hey, I don't have a 1.2 GPU to test with but the build archive seems to contain all CUDA binaries. Have you tried to update latest drivers from nvidia website?
English Steve
01.11.2013 21:54
Hi Mika, SSS will suport GPU?
English Germannny
23.11.2013 15:14
Hi, have you stopped releasing new builds?
(Oct.29 - Nov.23,2013)
Or is there an error on your site?
Keep up the good work, thx!
English Aus
14.02.2018 10:27
Do these links still work because I am receiving a 404 error

Kommentoi:
Nimi: *
Kotisivu:
Kieli:
Arvio:
Varmistuskoodi: *verification image (?)
Kommentti: *
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021