finish SReLU #49

This commit is contained in:
uucoco 2025-12-02 21:39:59 +08:00
parent 10eed82956
commit 2bbf74949f
4 changed files with 269 additions and 0 deletions

101
S1/uucoco_#49/SReLU_cuda.py Normal file
View File

@ -0,0 +1,101 @@
import torch
import torch.nn as nn
from torch.utils.cpp_extension import load_inline
class ModelNew(nn.Module):
def __init__(self, tl=-1.0, al=0.1, tr=1.0, ar=0.1):
super().__init__()
self.tl = tl
self.al = al
self.tr = tr
self.ar = ar
self._compile_cuda_kernel()
def _compile_cuda_kernel(self):
cpp_source = """
torch::Tensor srelu_cuda(torch::Tensor x, float tl, float al, float tr, float ar);
"""
cuda_source = """
#include <torch/extension.h>
#include <cuda_runtime.h>
#include <math.h>
__device__ __forceinline__ float srelu_op(float x, float tl, float al, float tr, float ar) {
// Region 1: x <= t_l
if (x <= tl) {
return tl + al * (x - tl);
}
// Region 3: x >= t_r
if (x >= tr) {
return tr + ar * (x - tr);
}
// Region 2: t_l < x < t_r
return x;
}
__global__ void srelu_kernel(
const float* __restrict__ x,
float* __restrict__ output,
const int n_elements,
const float tl,
const float al,
const float tr,
const float ar)
{
const int tid = blockIdx.x * blockDim.x + threadIdx.x;
const int stride = blockDim.x * gridDim.x;
const int vec_loops = n_elements >> 2;
const float4* x_vec = reinterpret_cast<const float4*>(x);
float4* out_vec = reinterpret_cast<float4*>(output);
for (int i = tid; i < vec_loops; i += stride) {
float4 v = __ldg(&x_vec[i]);
float4 r;
r.x = srelu_op(v.x, tl, al, tr, ar);
r.y = srelu_op(v.y, tl, al, tr, ar);
r.z = srelu_op(v.z, tl, al, tr, ar);
r.w = srelu_op(v.w, tl, al, tr, ar);
out_vec[i] = r;
}
const int tail_start = vec_loops << 2;
for (int i = tail_start + tid; i < n_elements; i += stride) {
output[i] = srelu_op(x[i], tl, al, tr, ar);
}
}
torch::Tensor srelu_cuda(torch::Tensor x, float tl, float al, float tr, float ar) {
auto x_c = x.contiguous();
const int n_elements = x_c.numel();
auto output = torch::empty_like(x_c);
const int threads = 256;
const int max_blocks = 65535;
const int blocks = std::min((n_elements + threads * 4 - 1) / (threads * 4), max_blocks);
srelu_kernel<<<blocks, threads>>>(
x_c.data_ptr<float>(),
output.data_ptr<float>(),
n_elements,
tl, al, tr, ar
);
return output;
}
"""
self.op = load_inline(
name="srelu_v1",
cpp_sources=cpp_source,
cuda_sources=cuda_source,
functions=["srelu_cuda"],
extra_cuda_cflags=["-O3", "--use_fast_math"],
verbose=False
)
def forward(self, x):
return self.op.srelu_cuda(x, self.tl, self.al, self.tr, self.ar)

View File

@ -0,0 +1,33 @@
import torch
import torch.nn as nn
class Model(nn.Module):
def __init__(self, tl=-1.0, al=0.1, tr=1.0, ar=0.1):
super().__init__()
self.tl = tl
self.al = al
self.tr = tr
self.ar = ar
def forward(self, x: torch.Tensor) -> torch.Tensor:
y_left = self.tl + self.al * (x - self.tl)
y_right = self.tr + self.ar * (x - self.tr)
y_mid_and_right = torch.where(x < self.tr, x, y_right)
return torch.where(x <= self.tl, y_left, y_mid_and_right)
batch_size = 128
feature_dim = 512
def get_inputs():
x = torch.randn(batch_size, feature_dim, dtype=torch.float32)
return [x]
def get_init_inputs():
return [-1.0, 0.1, 1.0, 0.1]

58
S1/uucoco_#49/prompt.txt Normal file
View File

@ -0,0 +1,58 @@
You write custom CUDA kernels to replace the pytorch operators in the given GeGLU architecture to get speedups.
You have complete freedom to choose the set of operators you want to replace. You may make the decision to replace some operators with custom CUDA kernels and leave others unchanged. You may replace multiple operators with custom implementations, consider operator fusion opportunities (combining multiple operators into a single kernel, for example, combining chunk+gelu+elementwise_mul), or algorithmic changes (such as optimized memory access patterns). You are only limited by your imagination.
This CUDA kernel implements a S-shaped Rectified Linear Unit (S-ReLU) activation function with the following optimizations:
Vectorization: Uses float4memory operations to process 4 elements per thread, significantly increasing memory throughput by leveraging vector loads/stores.
Cache Optimization: Employs __ldg()intrinsic for read-only data to leverage GPU's texture cache and improve memory access patterns.
Memory Coalescing: Accesses contiguous memory blocks through vector operations, optimizing GPU memory bandwidth utilization.
Grid-Stride Loop: Handles arbitrary-sized tensors efficiently by having threads process multiple elements with strided indexing.
Tail Processing: Separately handles non-multiple-of-4 elements after vectorized operations to ensure complete data processing.
Fast Math Optimization: Uses --use_fast_mathcompiler flag for optimized comparison and arithmetic operations.
Mathematical Function: Implements a 3-piecewise S-ReLU activation with configurable parameters:
Left region(x ≤ tl): tl + al × (x - tl)(leaky left side)
Middle region (tl < x < tr): x(linear identity)
Right region(x ≥ tr): tr + ar × (x - tr)(leaky right side)
Multi-Parameter Support: Passes four configurable parameters (tl, al, tr, ar) directly to the CUDA kernel, enabling flexible S-shaped activation behavior.
Branch Prediction: Uses conditional branching for the 3-region logic, which is efficiently handled by GPU warp schedulers.
Occupancy Optimization: Configures 256 threads per block and dynamically calculates grid size based on vectorized element count (threads × 4) to maximize GPU occupancy.
Compiler Optimizations: Enabled with -O3flag for aggressive performance optimization.
Inlined Device Function: The core piecewise operation is marked with __forceinline__to eliminate function call overhead within the kernel.
Here's an example to show you the syntax of inline embedding custom CUDA operators in torch: The example given architecture is:
import torch
import torch.nn as nn
class Model(nn.Module):
def __init__(self, tl=-1.0, al=0.1, tr=1.0, ar=0.1):
super().__init__()
self.tl = tl
self.al = al
self.tr = tr
self.ar = ar
def forward(self, x: torch.Tensor) -> torch.Tensor:
y_left = self.tl + self.al * (x - self.tl)
y_right = self.tr + self.ar * (x - self.tr)
y_mid_and_right = torch.where(x < self.tr, x, y_right)
return torch.where(x <= self.tl, y_left, y_mid_and_right)
batch_size = 128
feature_dim = 512
def get_inputs():
x = torch.randn(batch_size, feature_dim, dtype=torch.float32)
return [x]
def get_init_inputs():
return [-1.0, 0.1, 1.0, 0.1]

77
S1/uucoco_#49/run_code.py Normal file
View File

@ -0,0 +1,77 @@
###########################################################
# 性能和精度验证程序
###########################################################
import torch
import torch.nn as nn
import time
from SReLU_torch import Model, get_inputs, get_init_inputs
from SReLU_cuda import ModelNew
def run_benchmark():
# 检查 CUDA 是否可用
if not torch.cuda.is_available():
print("CUDA 不可用,请确保您有可用的 NVIDIA GPU 并已正确安装 PyTorch CUDA 版本。")
return
else:
device = torch.device("cuda")
# 初始化模型
init_inputs = get_init_inputs()
init_inputs = [
x.cuda(device=device) if isinstance(x, torch.Tensor) else x for x in init_inputs
]
inputs = get_inputs()
inputs = [
x.cuda(device=device) if isinstance(x, torch.Tensor) else x for x in inputs
]
torch_model = Model(*init_inputs).cuda()
cuda_model = ModelNew(*init_inputs).cuda()
torch_model.eval()
cuda_model.eval()
print("-------------------- 精度对齐验证 --------------------")
with torch.no_grad():
output_torch = torch_model(*inputs)
output_cuda = cuda_model(*inputs)
precision_flag = torch.allclose(output_torch, output_cuda, rtol=1e-03)
if precision_flag:
print("✅ 精度对齐:两个模型的输出结果非常接近。")
else:
print("❌ 精度不一致!")
print("\n-------------------- 性能加速比测试 --------------------")
num_iterations = 100
# PyTorch 模型计时
torch.cuda.synchronize()
start_time = time.time()
for _ in range(num_iterations):
_ = torch_model(*inputs)
torch.cuda.synchronize()
torch_time = (time.time() - start_time) / num_iterations
# 自定义 CUDA 内核计时
torch.cuda.synchronize()
start_time = time.time()
for _ in range(num_iterations):
_ = cuda_model(*inputs)
torch.cuda.synchronize()
cuda_time = (time.time() - start_time) / num_iterations
print(f"PyTorch torch.relu 平均执行时间: {torch_time:.6f}")
print(f"自定义 CUDA 内核 平均执行时间: {cuda_time:.6f}")
speedup = 0
if cuda_time > 0:
speedup = torch_time / cuda_time
print(f"加速比 (Speedup): {speedup:.2f}x")
else:
print("CUDA 内核执行时间为0无法计算加速比。")
return precision_flag, speedup
if __name__ == "__main__":
precision_flag, speedup = run_benchmark()