teeny_kernels/nn/pad/mod.rs
1/*
2 * Copyright (c) 2026 Teenygrad.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17pub mod circular_pad1d;
18pub mod circular_pad2d;
19pub mod circular_pad3d;
20pub mod constant_pad1d;
21pub mod constant_pad2d;
22pub mod constant_pad3d;
23pub mod reflection_pad1d;
24pub mod reflection_pad2d;
25pub mod reflection_pad3d;
26pub mod replication_pad1d;
27pub mod replication_pad2d;
28pub mod replication_pad3d;