Add oneAPI to the 'cycles_device' command line argument help text

Differential Revision: https://developer.blender.org/D16027
This commit is contained in:
Alaska 2022-09-21 12:04:27 +02:00 committed by Brecht Van Lommel
parent 609422c0a1
commit a920f32ccd
Notes: blender-bot 2023-02-14 07:18:54 +01:00
Referenced by issue #100749, Blender LTS: Maintenance Task 3.3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def _configure_argument_parser():
action='store_true')
parser.add_argument("--cycles-device",
help="Set the device to use for Cycles, overriding user preferences and the scene setting."
"Valid options are 'CPU', 'CUDA', 'OPTIX', 'HIP' or 'METAL'."
"Valid options are 'CPU', 'CUDA', 'OPTIX', 'HIP', 'ONEAPI', or 'METAL'."
"Additionally, you can append '+CPU' to any GPU type for hybrid rendering.",
default=None)
return parser