Blender2.83 使用GPU渲染 python代码写法

Blender2.83 使用GPU渲染 python代码写法,第1张

Blender2.83 使用GPU渲染 python代码写法

bpy.context.scene.render.engine = 'CYCLES'
bpy.context.scene.cycles.device = 'GPU'
bpy.context.preferences.addons['cycles'].preferences.compute_device_type = 'CUDA'
bpy.context.preferences.addons["cycles"].preferences.get_devices()
for d in bpy.context.preferences.addons["cycles"].preferences.devices:
    # only use GPU.
    if d["name"] == 'Intel Xeon CPU E5-2630 v4 @ 2.20GHz':
        d["use"] = 0 
    else:
        d["use"] = 1
    print(d["name"], d["use"])

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4827820.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-10
下一篇 2022-11-10

发表评论

登录后才能评论

评论列表(0条)

保存