Skip to content
Open
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
f6ac084
Feat: Added vulkan circular tiling support
Phylliida Nov 3, 2025
d7f5958
Feat: Added cpu circular
Phylliida Nov 3, 2025
1b62b49
Feat: Added cuda kernels
Phylliida Nov 3, 2025
60bed3b
Added tests
Phylliida Nov 3, 2025
5700a4e
Added tests
Phylliida Nov 3, 2025
a894631
Merge branch 'master' into master
Phylliida Nov 12, 2025
9861a3d
Removed non-pad operations
Phylliida Nov 15, 2025
38f8724
Removed unneded changes
Phylliida Nov 15, 2025
d4a664b
removed backend non pad tests
Phylliida Nov 15, 2025
a785537
Merge branch 'ggml-org:master' into master
Phylliida Nov 15, 2025
d9dc234
Merge branch 'ggml-org:master' into master
Phylliida Nov 18, 2025
552e5b2
Update test-backend-ops.cpp
Phylliida Nov 18, 2025
1c69e4e
Fixed comment on pad test
Phylliida Nov 19, 2025
3cd8167
Merge branch 'ggml-org:master' into master
Phylliida Nov 19, 2025
429854b
removed trailing whitespace
Nov 19, 2025
cf720e8
Removed unneded test in test-backend-ops
Nov 25, 2025
b65967a
Merge branch 'ggml-org:master' into master
Phylliida Nov 25, 2025
a0bbbc2
Removed removed test from calls
Nov 25, 2025
c9513b4
Update ggml/src/ggml-vulkan/vulkan-shaders/pad.comp
Phylliida Nov 29, 2025
df6635f
Fixed alignment
Phylliida Nov 29, 2025
893065d
Formatting
Phylliida Nov 29, 2025
3bfacc8
Format pad
Nov 30, 2025
4cdba9f
Format
Nov 30, 2025
606dd62
Clang format
Nov 30, 2025
6dc7169
format
Nov 30, 2025
c3b3ed0
format
Nov 30, 2025
d383a2c
don't change so much stuff
Nov 30, 2025
b794da8
clang format and update to bool
Nov 30, 2025
e315fcf
fix duplicates
Nov 30, 2025
80915a1
don't need to fix the padding
Nov 30, 2025
1721a2b
make circular bool
Nov 30, 2025
89559a1
duplicate again
Nov 30, 2025
af56c82
rename vulkan to wrap around
Nov 30, 2025
ec892ec
Don't need indent
Nov 30, 2025
f295d28
moved to const expr
Nov 30, 2025
bb8ecad
removed unneded extra line break
Nov 30, 2025
4d20856
More readable method calls
Nov 30, 2025
b850c04
Minor wording changes
Nov 30, 2025
801cd84
Added final newline
Nov 30, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make circular bool
  • Loading branch information
Phylliida committed Nov 30, 2025
commit 1721a2b49b39dee0272940d62be28f5de4a40836
2 changes: 1 addition & 1 deletion ggml/src/ggml-cuda/pad.cu
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static void pad_f32_cuda(const float * src, float * dst,
const int lp0, const int rp0, const int lp1, const int rp1,
const int lp2, const int rp2, const int lp3, const int rp3,
const int ne0, const int ne1, const int ne2, const int ne3,
const int circular, cudaStream_t stream) {
const bool circular, cudaStream_t stream) {
int num_blocks = (ne0 + CUDA_PAD_BLOCK_SIZE - 1) / CUDA_PAD_BLOCK_SIZE;
dim3 gridDim(num_blocks, ne1, ne2*ne3);
pad_f32<<<gridDim, CUDA_PAD_BLOCK_SIZE, 0, stream>>>(src, dst, lp0, rp0, lp1, rp1, lp2, rp2, lp3, rp3, ne0, ne1, ne2, ne3, circular);
Expand Down