-
Notifications
You must be signed in to change notification settings - Fork 13.8k
ggml: fix cuda kernel launch configuration for k_compute_batched_ptrs to support large batch #16744
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6562,6 +6562,10 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() { | |
| test_cases.emplace_back(new test_mul_mat(type_a, type_b, 16, 1, 1024, {3, 2}, {1, 1})); | ||
| test_cases.emplace_back(new test_mul_mat(type_a, type_b, 16, 8, 1024, {3, 2}, {1, 1})); | ||
| test_cases.emplace_back(new test_mul_mat(type_a, type_b, 16, 16, 1024, {3, 2}, {1, 1})); | ||
|
|
||
| // test cases with large batch size | ||
| test_cases.emplace_back(new test_mul_mat(type_a, type_b, 16, 8, 256, {1024, 2}, {1, 1})); | ||
| test_cases.emplace_back(new test_mul_mat(type_a, type_b, 16, 8, 256, {4096, 1}, {1, 1})); | ||
|
||
| } | ||
| } | ||
| for (ggml_type type_a : other_types) { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.