2011-04-27 11:58:34 +00:00
|
|
|
/*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Copyright 2011-2013 Blender Foundation
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-04-27 11:58:34 +00:00
|
|
|
*
|
2013-08-18 14:16:15 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License
|
2011-04-27 11:58:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* CUDA kernel entry points */
|
|
|
|
|
|
|
|
#include "kernel_compat_cuda.h"
|
|
|
|
#include "kernel_math.h"
|
|
|
|
#include "kernel_types.h"
|
|
|
|
#include "kernel_globals.h"
|
|
|
|
#include "kernel_film.h"
|
|
|
|
#include "kernel_path.h"
|
2014-05-19 12:57:55 +00:00
|
|
|
#include "kernel_bake.h"
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2014-04-16 17:04:58 +00:00
|
|
|
/* device data taken from CUDA occupancy calculator */
|
|
|
|
|
|
|
|
#ifdef __CUDA_ARCH__
|
|
|
|
|
|
|
|
/* 2.0 and 2.1 */
|
|
|
|
#if __CUDA_ARCH__ == 200 || __CUDA_ARCH__ == 210
|
|
|
|
#define CUDA_MULTIPRESSOR_MAX_REGISTERS 32768
|
|
|
|
#define CUDA_MULTIPROCESSOR_MAX_BLOCKS 8
|
|
|
|
#define CUDA_BLOCK_MAX_THREADS 1024
|
|
|
|
#define CUDA_THREAD_MAX_REGISTERS 63
|
|
|
|
|
|
|
|
/* tunable parameters */
|
|
|
|
#define CUDA_THREADS_BLOCK_WIDTH 16
|
|
|
|
#define CUDA_KERNEL_MAX_REGISTERS 32
|
|
|
|
#define CUDA_KERNEL_BRANCHED_MAX_REGISTERS 40
|
|
|
|
|
|
|
|
/* 3.0 and 3.5 */
|
|
|
|
#elif __CUDA_ARCH__ == 300 || __CUDA_ARCH__ == 350
|
|
|
|
#define CUDA_MULTIPRESSOR_MAX_REGISTERS 65536
|
|
|
|
#define CUDA_MULTIPROCESSOR_MAX_BLOCKS 16
|
|
|
|
#define CUDA_BLOCK_MAX_THREADS 1024
|
|
|
|
#define CUDA_THREAD_MAX_REGISTERS 63
|
|
|
|
|
|
|
|
/* tunable parameters */
|
|
|
|
#define CUDA_THREADS_BLOCK_WIDTH 16
|
2014-04-30 08:54:17 +00:00
|
|
|
#define CUDA_KERNEL_MAX_REGISTERS 63
|
|
|
|
#define CUDA_KERNEL_BRANCHED_MAX_REGISTERS 63
|
2014-04-16 17:04:58 +00:00
|
|
|
|
2014-10-13 13:25:40 +00:00
|
|
|
/* 3.2 */
|
2014-10-12 16:16:46 +00:00
|
|
|
#elif __CUDA_ARCH__ == 320
|
|
|
|
#define CUDA_MULTIPRESSOR_MAX_REGISTERS 32768
|
|
|
|
#define CUDA_MULTIPROCESSOR_MAX_BLOCKS 16
|
|
|
|
#define CUDA_BLOCK_MAX_THREADS 1024
|
|
|
|
#define CUDA_THREAD_MAX_REGISTERS 63
|
|
|
|
|
|
|
|
/* tunable parameters */
|
|
|
|
#define CUDA_THREADS_BLOCK_WIDTH 16
|
|
|
|
#define CUDA_KERNEL_MAX_REGISTERS 63
|
|
|
|
#define CUDA_KERNEL_BRANCHED_MAX_REGISTERS 63
|
|
|
|
|
2014-09-25 18:03:46 +00:00
|
|
|
/* 5.0 and 5.2 */
|
|
|
|
#elif __CUDA_ARCH__ == 500 || __CUDA_ARCH__ == 520
|
2014-04-28 12:24:41 +00:00
|
|
|
#define CUDA_MULTIPRESSOR_MAX_REGISTERS 65536
|
|
|
|
#define CUDA_MULTIPROCESSOR_MAX_BLOCKS 32
|
|
|
|
#define CUDA_BLOCK_MAX_THREADS 1024
|
|
|
|
#define CUDA_THREAD_MAX_REGISTERS 255
|
|
|
|
|
|
|
|
/* tunable parameters */
|
|
|
|
#define CUDA_THREADS_BLOCK_WIDTH 16
|
2014-05-27 13:09:00 +00:00
|
|
|
#define CUDA_KERNEL_MAX_REGISTERS 40
|
2014-04-30 08:54:17 +00:00
|
|
|
#define CUDA_KERNEL_BRANCHED_MAX_REGISTERS 63
|
2014-04-28 12:24:41 +00:00
|
|
|
|
2014-04-16 17:04:58 +00:00
|
|
|
/* unknown architecture */
|
|
|
|
#else
|
2014-07-05 12:25:34 +00:00
|
|
|
#error "Unknown or unsupported CUDA architecture, can't determine launch bounds"
|
2014-04-16 17:04:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* compute number of threads per block and minimum blocks per multiprocessor
|
|
|
|
* given the maximum number of registers per thread */
|
|
|
|
|
|
|
|
#define CUDA_LAUNCH_BOUNDS(threads_block_width, thread_num_registers) \
|
|
|
|
__launch_bounds__( \
|
|
|
|
threads_block_width*threads_block_width, \
|
|
|
|
CUDA_MULTIPRESSOR_MAX_REGISTERS/(threads_block_width*threads_block_width*thread_num_registers) \
|
|
|
|
)
|
|
|
|
|
|
|
|
/* sanity checks */
|
|
|
|
|
|
|
|
#if CUDA_THREADS_BLOCK_WIDTH*CUDA_THREADS_BLOCK_WIDTH > CUDA_BLOCK_MAX_THREADS
|
|
|
|
#error "Maximum number of threads per block exceeded"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CUDA_MULTIPRESSOR_MAX_REGISTERS/(CUDA_THREADS_BLOCK_WIDTH*CUDA_THREADS_BLOCK_WIDTH*CUDA_KERNEL_MAX_REGISTERS) > CUDA_MULTIPROCESSOR_MAX_BLOCKS
|
|
|
|
#error "Maximum number of blocks per multiprocessor exceeded"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CUDA_KERNEL_MAX_REGISTERS > CUDA_THREAD_MAX_REGISTERS
|
|
|
|
#error "Maximum number of registers per thread exceeded"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CUDA_KERNEL_BRANCHED_MAX_REGISTERS > CUDA_THREAD_MAX_REGISTERS
|
|
|
|
#error "Maximum number of registers per thread exceeded"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* kernels */
|
|
|
|
|
|
|
|
extern "C" __global__ void
|
|
|
|
CUDA_LAUNCH_BOUNDS(CUDA_THREADS_BLOCK_WIDTH, CUDA_KERNEL_MAX_REGISTERS)
|
|
|
|
kernel_cuda_path_trace(float *buffer, uint *rng_state, int sample, int sx, int sy, int sw, int sh, int offset, int stride)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
int x = sx + blockDim.x*blockIdx.x + threadIdx.x;
|
|
|
|
int y = sy + blockDim.y*blockIdx.y + threadIdx.y;
|
|
|
|
|
|
|
|
if(x < sx + sw && y < sy + sh)
|
2013-08-23 14:34:34 +00:00
|
|
|
kernel_path_trace(NULL, buffer, rng_state, sample, x, y, offset, stride);
|
2013-08-09 18:47:25 +00:00
|
|
|
}
|
|
|
|
|
2013-08-23 14:34:34 +00:00
|
|
|
#ifdef __BRANCHED_PATH__
|
2014-04-16 17:04:58 +00:00
|
|
|
extern "C" __global__ void
|
|
|
|
CUDA_LAUNCH_BOUNDS(CUDA_THREADS_BLOCK_WIDTH, CUDA_KERNEL_BRANCHED_MAX_REGISTERS)
|
|
|
|
kernel_cuda_branched_path_trace(float *buffer, uint *rng_state, int sample, int sx, int sy, int sw, int sh, int offset, int stride)
|
2013-08-09 18:47:25 +00:00
|
|
|
{
|
|
|
|
int x = sx + blockDim.x*blockIdx.x + threadIdx.x;
|
|
|
|
int y = sy + blockDim.y*blockIdx.y + threadIdx.y;
|
|
|
|
|
|
|
|
if(x < sx + sw && y < sy + sh)
|
2013-08-23 14:34:34 +00:00
|
|
|
kernel_branched_path_trace(NULL, buffer, rng_state, sample, x, y, offset, stride);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
2013-08-09 20:03:49 +00:00
|
|
|
#endif
|
2011-04-27 11:58:34 +00:00
|
|
|
|
2014-04-16 17:04:58 +00:00
|
|
|
extern "C" __global__ void
|
|
|
|
CUDA_LAUNCH_BOUNDS(CUDA_THREADS_BLOCK_WIDTH, CUDA_KERNEL_MAX_REGISTERS)
|
|
|
|
kernel_cuda_convert_to_byte(uchar4 *rgba, float *buffer, float sample_scale, int sx, int sy, int sw, int sh, int offset, int stride)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
int x = sx + blockDim.x*blockIdx.x + threadIdx.x;
|
|
|
|
int y = sy + blockDim.y*blockIdx.y + threadIdx.y;
|
|
|
|
|
|
|
|
if(x < sx + sw && y < sy + sh)
|
2013-08-30 23:49:38 +00:00
|
|
|
kernel_film_convert_to_byte(NULL, rgba, buffer, sample_scale, x, y, offset, stride);
|
|
|
|
}
|
|
|
|
|
2014-04-16 17:04:58 +00:00
|
|
|
extern "C" __global__ void
|
|
|
|
CUDA_LAUNCH_BOUNDS(CUDA_THREADS_BLOCK_WIDTH, CUDA_KERNEL_MAX_REGISTERS)
|
|
|
|
kernel_cuda_convert_to_half_float(uchar4 *rgba, float *buffer, float sample_scale, int sx, int sy, int sw, int sh, int offset, int stride)
|
2013-08-30 23:49:38 +00:00
|
|
|
{
|
|
|
|
int x = sx + blockDim.x*blockIdx.x + threadIdx.x;
|
|
|
|
int y = sy + blockDim.y*blockIdx.y + threadIdx.y;
|
|
|
|
|
|
|
|
if(x < sx + sw && y < sy + sh)
|
|
|
|
kernel_film_convert_to_half_float(NULL, rgba, buffer, sample_scale, x, y, offset, stride);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2014-04-16 17:04:58 +00:00
|
|
|
extern "C" __global__ void
|
|
|
|
CUDA_LAUNCH_BOUNDS(CUDA_THREADS_BLOCK_WIDTH, CUDA_KERNEL_MAX_REGISTERS)
|
2014-08-22 18:09:40 +00:00
|
|
|
kernel_cuda_shader(uint4 *input, float4 *output, int type, int sx, int sw, int offset, int sample)
|
2011-04-27 11:58:34 +00:00
|
|
|
{
|
|
|
|
int x = sx + blockDim.x*blockIdx.x + threadIdx.x;
|
|
|
|
|
2014-06-05 16:10:06 +00:00
|
|
|
if(x < sx + sw)
|
2014-06-06 12:40:09 +00:00
|
|
|
kernel_shader_evaluate(NULL, input, output, (ShaderEvalType)type, x, sample);
|
2011-04-27 11:58:34 +00:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:20:07 +00:00
|
|
|
extern "C" __global__ void
|
|
|
|
CUDA_LAUNCH_BOUNDS(CUDA_THREADS_BLOCK_WIDTH, CUDA_KERNEL_MAX_REGISTERS)
|
2014-08-19 09:39:40 +00:00
|
|
|
kernel_cuda_bake(uint4 *input, float4 *output, int type, int sx, int sw, int offset, int sample)
|
2014-05-27 11:20:07 +00:00
|
|
|
{
|
|
|
|
int x = sx + blockDim.x*blockIdx.x + threadIdx.x;
|
|
|
|
|
2014-06-05 16:10:06 +00:00
|
|
|
if(x < sx + sw)
|
2014-08-19 09:39:40 +00:00
|
|
|
kernel_bake_evaluate(NULL, input, output, (ShaderEvalType)type, x, offset, sample);
|
2014-05-27 11:20:07 +00:00
|
|
|
}
|
|
|
|
|
2014-04-16 17:04:58 +00:00
|
|
|
#endif
|
|
|
|
|