Skip to content
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

Update tensilelite version to fix BB when Python <= 3.8 #148

Merged
merged 2 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion library/src/hcc_detail/rocsparselt/src/tensile_host.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ rocsparselt_status getBestSolutions(const RocsparseltContractionProblem<Ti, To,
{
auto solution = solutions[i];
configs[i].index = solution->index;
configs[i].max_workspace_bytes = solution->requiredWorkspaceSize(tensile_prob);
configs[i].max_workspace_bytes = solution->requiredWorkspaceSize(tensile_prob, *hardware);
configs[i].use_bias = tensile_prob.useBias();
configs[i].use_scale_alpha_vec = tensile_prob.useScaleAlphaVec();
}
Expand Down
2 changes: 1 addition & 1 deletion tensilelite_tag.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
02e042a5b6e425d6c1edf14618acd0a2d103beed
470b507209c243cfe71ca6e5b9f954013bf2bf89
Loading