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 338e668 commit 9ae47b7Copy full SHA for 9ae47b7
cpp/tensorrt_llm/thop/tinygemm2.cpp
@@ -31,7 +31,7 @@ namespace torch_ext
31
torch::Tensor tinygemm2_forward(torch::Tensor input, torch::Tensor weight, torch::Tensor bias)
32
{
33
auto const smVersion = tensorrt_llm::common::getSMVersion();
34
- TORCH_CHECK(smVersion == 90 || smVersion == 100, "tinygemm2 only supports SM90 and SM100.");
+ TORCH_CHECK(smVersion == 90 || smVersion == 100 || smVersion == 103, "tinygemm2 only supports SM90, SM100, and SM103.");
35
TORCH_CHECK(input.dim() == 2, "input must be 2D");
36
TORCH_CHECK(weight.dim() == 2, "weight must be 2D");
37
TORCH_CHECK(bias.dim() == 1, "bias must be 1D");
0 commit comments