We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d333c commit 2d128acCopy full SHA for 2d128ac
torchao/csrc/rocm/swizzle/swizzle.cpp
@@ -174,10 +174,10 @@ static size_t _parseChosenWorkspaceSize() {
174
if (val.has_value()) {
175
try {
176
workspace_size = std::stoi(val.value());
177
- } catch(std::invalid_argument const& e) {
+ } catch(std::invalid_argument const&) {
178
TORCH_WARN("invalid CUBLASLT_WORKSPACE_SIZE,",
179
" using default workspace size of ", workspace_size, " KiB.");
180
- } catch(std::out_of_range const& e) {
+ } catch(std::out_of_range const&) {
181
TORCH_WARN("CUBLASLT_WORKSPACE_SIZE out of range,",
182
183
}
0 commit comments