Cycles: Disable Branched Path on all GPUs for now, until we separate the cubins.
SM_20 fails now as well, reported by Zanqdo in IRC.
This commit is contained in:
@@ -248,8 +248,8 @@ public:
|
||||
}
|
||||
|
||||
/* Currently no Branched Path on sm_30 */
|
||||
if(branched && major == 3 && minor == 0) {
|
||||
cuda_error_message(string_printf("CUDA device: Branched Path is currently disabled on sm_30 GPUs."));
|
||||
if(branched) {
|
||||
cuda_error_message(string_printf("CUDA device: Branched Path is currently disabled, due to compile errors."));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -69,10 +69,12 @@ CCL_NAMESPACE_BEGIN
|
||||
#ifdef __KERNEL_CUDA__
|
||||
#define __KERNEL_SHADING__
|
||||
#define __KERNEL_ADV_SHADING__
|
||||
#if __CUDA_ARCH__ != 300
|
||||
#define __BRANCHED_PATH__
|
||||
#endif
|
||||
/* Disabled for now, compile errors */
|
||||
//#define __BRANCHED_PATH__
|
||||
|
||||
/* Experimental on GPU */
|
||||
//#define __VOLUME__
|
||||
//#define __SUBSURFACE__
|
||||
#endif
|
||||
|
||||
#ifdef __KERNEL_OPENCL__
|
||||
|
||||
Reference in New Issue
Block a user