fix pixel values padding (#10718)

* panic if trying to pad 4d

* fix pixel values padding
This commit is contained in:
Michael Yang
2025-05-15 13:44:44 -07:00
committed by GitHub
parent 55760195e6
commit ef202789fa
2 changed files with 10 additions and 3 deletions

View File

@@ -915,6 +915,8 @@ func (t *Tensor) RMSNorm(ctx ml.Context, w ml.Tensor, eps float32) ml.Tensor {
func (t *Tensor) Pad(ctx ml.Context, shape ...int) ml.Tensor {
if len(shape) != 4 {
panic("expected 4 dimensions")
} else if shape[3] != 0 {
panic("cuda does not support 4d tensors")
}
return &Tensor{