File size: 2,874 Bytes
111ba01
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (c) 2020, NVIDIA CORPORATION.  All rights reserved.
//
// NVIDIA CORPORATION and its licensors retain all intellectual property
// and proprietary rights in and to this software, related documentation
// and any modifications thereto.  Any use, reproduction, disclosure or
// distribution of this software and related documentation without an express
// license agreement from NVIDIA CORPORATION is strictly prohibited.

#pragma once

//------------------------------------------------------------------------
// Constants and helpers.

#define IP_FWD_MAX_KERNEL_BLOCK_WIDTH   8
#define IP_FWD_MAX_KERNEL_BLOCK_HEIGHT  8
#define IP_GRAD_MAX_KERNEL_BLOCK_WIDTH  8
#define IP_GRAD_MAX_KERNEL_BLOCK_HEIGHT 8
#define IP_MAX_DIFF_ATTRS               32

//------------------------------------------------------------------------
// CUDA kernel params.

struct InterpolateKernelParams
{
    const int*      tri;                            // Incoming triangle buffer.
    const float*    attr;                           // Incoming attribute buffer.
    const float*    rast;                           // Incoming rasterizer output buffer.
    const float*    rastDB;                         // Incoming rasterizer output buffer for bary derivatives.
    const float*    dy;                             // Incoming attribute gradients.
    const float*    dda;                            // Incoming attr diff gradients.
    float*          out;                            // Outgoing interpolated attributes.
    float*          outDA;                          // Outgoing texcoord major axis lengths.
    float*          gradAttr;                       // Outgoing attribute gradients.
    float*          gradRaster;                     // Outgoing rasterizer gradients.
    float*          gradRasterDB;                   // Outgoing rasterizer bary diff gradients.
    int             numTriangles;                   // Number of triangles.
    int             numVertices;                    // Number of vertices.
    int             numAttr;                        // Number of total vertex attributes.
    int             numDiffAttr;                    // Number of attributes to differentiate.
    int             width;                          // Image width.
    int             height;                         // Image height.
    int             depth;                          // Minibatch size.
    int             attrBC;                         // 0=normal, 1=attr is broadcast.
    int             instance_mode;                  // 0=normal, 1=instance mode.
    int             diff_attrs_all;                 // 0=normal, 1=produce pixel differentials for all attributes.
    int             diffAttrs[IP_MAX_DIFF_ATTRS];   // List of attributes to differentiate.
};

//------------------------------------------------------------------------