← Back to Leaderboard

The AI CUDA Engineer 👷

47_Conv3d_Mish_Tanhvec_nosync_mish_tanh_base

Level 2 • Task 47
import torch
import torch.nn as nn
import torch.nn.functional as F


def module_fn(
    x: torch.Tensor,
    stride: int,
    padding: int,
    conv_weight: torch.Tensor,
    conv_bias: torch.Tensor,
) -> torch.Tensor:
    """
    Applies 3D convolution followed by Mish and Tanh activations.

    Args:
        x (torch.Tensor): Input tensor of shape (batch_size, in_channels, D, H, W)
        stride (int): Stride of the convolution
        padding (int): Padding of the convolution
        conv_weight (torch.Tensor): Convolution weight tensor of shape
            (out_channels, in_channels, kernel_size, kernel_size, kernel_size)
        conv_bias (torch.Tensor): Bias tensor for convolution of shape (out_channels)

    Returns:
        torch.Tensor: Output tensor after applying convolution, Mish and Tanh activations
    """
    x = F.conv3d(x, conv_weight, bias=conv_bias, stride=stride, padding=padding)
    x = F.mish(x)
    x = torch.tanh(x)
    return x


class Model(nn.Module):
    """
    Model that performs a 3D convolution, applies Mish activation, and then applies Tanh activation.
    """

    def __init__(self, in_channels, out_channels, kernel_size, stride, padding):
        super(Model, self).__init__()
        conv = nn.Conv3d(
            in_channels, out_channels, kernel_size, stride=stride, padding=padding
        )
        self.conv_weight = nn.Parameter(conv.weight)
        self.conv_bias = nn.Parameter(
            conv.bias
            + torch.randn(
                conv.bias.shape, device=conv.bias.device, dtype=conv.bias.dtype
            )
            * 0.02
        )

    def forward(self, x, stride, padding, fn=module_fn):
        return fn(x, stride, padding, self.conv_weight, self.conv_bias)


batch_size = 16
in_channels = 3
out_channels = 16
D, H, W = 16, 32, 32
kernel_size = 3
stride = 1
padding = 0


def get_inputs():
    return [torch.randn(batch_size, in_channels, D, H, W), stride, padding]


def get_init_inputs():
    return [in_channels, out_channels, kernel_size, stride, padding]
import torch
import torch.nn as nn

class Model(nn.Module):
    """
    Model that performs a 3D convolution, applies Mish activation, and then applies Tanh activation.
    """
    def __init__(self, in_channels, out_channels, kernel_size, stride=1, padding=0):
        super(Model, self).__init__()
        self.conv = nn.Conv3d(in_channels, out_channels, kernel_size, stride=stride, padding=padding)
        self.conv.bias = nn.Parameter(self.conv.bias + torch.randn(self.conv.bias.shape, device=self.conv.bias.device, dtype=self.conv.bias.dtype) * 0.02)

    def forward(self, x):
        """
        Args:
            x (torch.Tensor): Input tensor of shape (batch_size, in_channels, D, H, W).

        Returns:
            torch.Tensor: Output tensor of shape (batch_size, out_channels, D', H', W').
        """
        x = self.conv(x)
        x = torch.nn.functional.mish(x)
        x = torch.tanh(x)
        return x

batch_size = 16
in_channels = 3
out_channels = 16
D, H, W = 16, 32, 32
kernel_size = 3

def get_inputs():
    return [torch.randn(batch_size, in_channels, D, H, W)]

def get_init_inputs():
    return [in_channels, out_channels, kernel_size]

Kernel Information

Related Kernels (Level 2, Task 47 • 47_Conv3d_Mish_Tanh)

Rank Kernel Name Runtime (ms) Speedup Native Speedup Compile
🥇 optimized_fused_mish_tanh_base 0.10 1.09 0.95
🥇 shared_mem_mish_tanh_base_base 0.10 1.09 0.95
🥇 modular_fused_mish_tanh_base 0.10 1.09 0.95
4 aligned_ldg_mish_tanh_base 0.10 1.08 0.94
4 warp_optimized_mish_tanh_base_base 0.10 1.08 0.94
4 vec_nosync_mish_tanh_base 0.10 1.08 0.94
4 block_size_optimization_mish_tanh_base 0.10 1.08 0.94
4 efficient_mish_tanh_shared_memory_base 0.10 1.08 0.94
4 fused_shared_unrolled_base 0.10 1.08 0.94
4 optimized_block_mish_tanh_base 0.10 1.08 0.94
4 manual_loop_unroll_fused_mish_tanh_base 0.10 1.08 0.94
4 stride_loop_mish_tanh_base 0.10 1.08 0.94
13 warp_level_no_shared_base 0.10 1.06 0.93
13 coalesced_memory_access_optimized_base 0.10 1.06 0.93
13 47_conv3d_mish_tanh_inplace_vec4_edit_1 0.10 1.06 0.93
13 47_conv3d_mish_tanh_shared_mem_base 0.10 1.06 0.93
13 47_Conv3d_Mish_Tanh_aligned_edit_1 0.10 1.06 0.93
13 47_Conv3d_Mish_Tanh_modular_base 0.10 1.06 0.93
19 47_conv3d_mish_tanh_unrolled_base 0.10 1.05 0.92
19 47_conv3d_mish_tanh_shared_mem_edit_1 0.10 1.05 0.92
#include <torch/extension.h>
#include <cuda.h>
#include <cuda_runtime.h>
#include <vector>

// Fused activation: applies Mish followed by Tanh
// Mish(x) = x * tanhf(softplus(x)) where softplus(x) = log(1 + exp(x))
__device__ __forceinline__ float fused_mish_tanh_activation(float x) {
    float softplus = logf(1.0f + expf(x));
    return tanhf(x * tanhf(softplus));
}

// Kernel using vectorized loads/stores without any shared memory barriers
// Each thread processes groups of 4 floats using __ldg() for efficient, read-only cache access.
// No __syncthreads() is needed since all threads work independently on their assigned indices.
__global__ void vec_nosync_mish_tanh_kernel(
    float* __restrict__ output,
    const float* __restrict__ input,
    int total_elements,
    int total_vec4
) {
    int idx = blockIdx.x * blockDim.x + threadIdx.x;
    int stride = blockDim.x * gridDim.x;
    
    // Process vectorized data (groups of 4 floats) without any synchronization
    for (int i = idx; i < total_vec4; i += stride) {
        float4 in_val = __ldg(reinterpret_cast<const float4*>(input) + i);
        float4 out_val;
        // Process each element in the float4 vector
        float* in_ptr = reinterpret_cast<float*>(&in_val);
        float* out_ptr = reinterpret_cast<float*>(&out_val);
        #pragma unroll
        for (int j = 0; j < 4; j++) {
            out_ptr[j] = fused_mish_tanh_activation(in_ptr[j]);
        }
        reinterpret_cast<float4*>(output)[i] = out_val;
    }

    int vec4_total = total_vec4 * 4;
    // Process any remaining elements that don't fit into a vectorized load
    for (int i = vec4_total + idx; i < total_elements; i += stride) {
        float in_val = __ldg(input + i);
        output[i] = fused_mish_tanh_activation(in_val);
    }
}

// Module forward function: perform 3D convolution then apply the fused Mish-Tanh activation
torch::Tensor module_fn_forward(
    torch::Tensor x,
    int64_t stride,
    int64_t padding,
    torch::Tensor conv_weight,
    torch::Tensor conv_bias
) {
    TORCH_CHECK(x.is_cuda(), "Input tensor x must be a CUDA tensor");
    TORCH_CHECK(conv_weight.is_cuda(), "Convolution weight must be a CUDA tensor");
    TORCH_CHECK(conv_bias.is_cuda(), "Convolution bias must be a CUDA tensor");
    
    // Perform 3D convolution using PyTorch's optimized conv3d
    auto x_conv = at::conv3d(
        x,
        conv_weight,
        conv_bias,
        {stride, stride, stride},
        {padding, padding, padding}
    );
    
    auto output = torch::empty_like(x_conv);
    int total_elements = x_conv.numel();
    int total_vec4 = total_elements / 4;
    
    const int block_size = 256;
    int num_blocks = (total_vec4 + block_size - 1) / block_size;
    // Limit grid size to avoid oversubscribing
    if (num_blocks > 2048) {
        num_blocks = 2048;
    }
    
    vec_nosync_mish_tanh_kernel<<<num_blocks, block_size>>>(
        output.data_ptr<float>(),
        x_conv.data_ptr<float>(),
        total_elements,
        total_vec4
    );
    
    return output;
}

PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
    m.def("forward", &module_fn_forward, "Vectorized no-sync Mish-Tanh activation fused with conv3d (CUDA)");
}
Performance Metrics
Metric Value Unit Variance Samples
Executed Ipc Active 2.816 inst/cycle 0.000 5
Executed Ipc Elapsed 2.234 inst/cycle 0.000 5
Issue Slots Busy 71.132 % 0.030 5
Issued Ipc Active 2.844 inst/cycle 0.000 5
SM Busy 71.132 % 0.030 5
Memory Throughput 1058910454299.050 byte/second 47783523982199242752.000 5
Mem Busy 27.154 % 0.041 5
Max Bandwidth 31.684 % 0.050 5
L1/TEX Hit Rate 0.000 % 0.000 5
L2 Hit Rate 50.924 % 0.046 5
Mem Pipes Busy 4.448 % 0.001 5
Warp Cycles Per Issued Instruction 18.848 cycle 0.001 5
Warp Cycles Per Executed Instruction 19.038 cycle 0.001 5
Avg. Active Threads Per Warp 20.950 0.000 5
Avg. Not Predicated Off Threads Per Warp 20.340 0.000 5
Max Active Clusters 0.000 cluster 0.000 5
Max Cluster Size 8.000 block 0.000 5
Overall GPU Occupancy 0.000 % 0.000 5
Cluster Occupancy 0.000 % 0.000 5
Block Limit SM 32.000 block 0.000 5
Block Limit Registers 10.000 block 0.000 5
Block Limit Shared Mem 32.000 block 0.000 5
Block Limit Warps 8.000 block 0.000 5
Theoretical Active Warps per SM 64.000 warp 0.000 5
Theoretical Occupancy 100.000 % 0.000 5
Achieved Occupancy 84.150 % 0.006 5
Achieved Active Warps Per SM 53.856 warp 0.003 5
Analysis Rules
Rule Description
INF HighPipeUtilization ALU is the highest-utilized pipeline (30.7%) based on active cycles, taking into account the rates of its different instructions. It executes integer and logic operations. It is well-utilized, but should not be a bottleneck.
WRN ThreadDivergence Instructions are executed in warps, which are groups of 32 threads. Optimal instruction throughput is achieved if all 32 threads of a warp execute the same instruction. The chosen launch configuration, early thread completion, and divergent flow control can significantly lower the number of active threads in a warp per cycle. This kernel achieves an average of 21.0 threads being active per cycle. This is further reduced to 20.3 threads per warp due to predication. The compiler may use predication to avoid an actual branch. Instead, all instructions are scheduled, but a per-thread condition code or predicate controls which threads execute the instructions. Try to avoid different execution paths within a warp when possible. In addition, ensure your kernel makes use of Independent Thread Scheduling, which allows a warp to reconverge after a data-dependent conditional block by explicitly calling __syncwarp().
WRN Occupancy This kernel's theoretical occupancy is not impacted by any block limit. The difference between calculated theoretical (100.0%) and measured achieved occupancy (84.2%) can be the result of warp scheduling overheads or workload imbalances during the kernel execution. Load imbalances can occur between warps within a block as well as across blocks of the same kernel. See the CUDA Best Practices Guide (https://docs.nvidia.com/cuda/cuda-c-best-practices-guide/index.html#occupancy) for more details on optimizing occupancy.
Operation / Metric Value Unit
aten::conv3d
CPU Time 981043.40 μs
Device Time 947725.00 μs
Self CPU Time 21056.29 μs
Self Device Time 0.00 μs
CPU Memory Usage 0 B
Device Memory Usage 0 B
Self CPU Memory Usage 0 B
Self Device Memory Usage 0 B
aten::convolution
CPU Time 959987.12 μs
Device Time 947725.00 μs
Self CPU Time 27645.75 μs
Self Device Time 0.00 μs
CPU Memory Usage 0 B
Device Memory Usage 0 B
Self CPU Memory Usage 0 B
Self Device Memory Usage 0 B
aten::_convolution
CPU Time 932341.36 μs
Device Time 947725.00 μs
Self CPU Time 52381.85 μs
Self Device Time 0.00 μs
CPU Memory Usage 0 B
Device Memory Usage 0 B
Self CPU Memory Usage 0 B
Self Device Memory Usage 0 B
aten::cudnn_convolution
CPU Time 761863.52 μs
Device Time 822657.89 μs
Self CPU Time 239561.14 μs
Self Device Time 822657.89 μs
CPU Memory Usage 0 B
Device Memory Usage 0 B
Self CPU Memory Usage 0 B
Self Device Memory Usage 0 B
sm80_xmma_fprop_implicit_gemm_indexed_f32f32_f32f32_f32_nchwkcrs_nchw_tilesize32x32x8_stage3_warpsize1x2x1_g1_ffma_aligna4_alignc4_execute_kernel__5x_cudnn
CPU Time 0.00 μs
Device Time 822654.94 μs
Self CPU Time 0.00 μs
Self Device Time 822654.94 μs
CPU Memory Usage 0 B
Device Memory Usage 0 B
Self CPU Memory Usage 0 B
Self Device Memory Usage 0 B
cudaLaunchKernel
CPU Time 736655.49 μs
Device Time 32867.67 μs
Self CPU Time 736655.49 μs
Self Device Time 32867.67 μs
CPU Memory Usage 0 B
Device Memory Usage 0 B
Self CPU Memory Usage 0 B
Self Device Memory Usage 0 B
Status: Completed
45284 warnings generated when compiling for host.
Suppressed 45325 warnings (45278 in non-user code, 47 NOLINT).
Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well.
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:19:5 bugprone-easily-swappable-parameters
19 | int total_elements,
| ^~~~~~~~~~~~~~~~~~~
20 | int total_vec4
| ~~~~~~~~~~~~~~
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:19:9: note: the first parameter in the range is 'total_elements'
19 | int total_elements,
| ^~~~~~~~~~~~~~
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:20:9: note: the last parameter in the range is 'total_vec4'
20 | int total_vec4
| ^~~~~~~~~~
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:22:15: warning: narrowing conversion from 'unsigned int' to signed type 'int' is implementation-defined [bugprone-narrowing-conversions]
22 | int idx = blockIdx.x * blockDim.x + threadIdx.x;
| ^
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:23:18: warning: narrowing conversion from 'unsigned int' to signed type 'int' is implementation-defined [bugprone-narrowing-conversions]
23 | int stride = blockDim.x * gridDim.x;
| ^
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:49:19: warning: the parameter 'x' is copied for each invocation but only used as a const reference; consider making it a const reference [performance-unnecessary-value-param]
49 | torch::Tensor x,
| ^
| const &
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:52:19: warning: the parameter 'conv_weight' is copied for each invocation but only used as a const reference; consider making it a const reference [performance-unnecessary-value-param]
52 | torch::Tensor conv_weight,
| ^
| const &
/home/robert_sakana_ai/llm_cuda/experiments/20250202_optimize_b10_s4_e0_sweep/level_2/task_47/b9_s1_vec_nosync_mish_tanh/base/base.cu:69:26: warning: narrowing conversion from 'int64_t' (aka 'long') to signed type 'int' is implementation-defined [bugprone-narrowing-conversions]
69 | int total_elements = x_conv.numel();
| ^