I have a small model with 900K in wights
compiled_model = torch.compile(net_model,backend="inductor",mode="max-autotune")
When I compile the model using max_autotune model, he is giving me this warning :
[WARNING] not enough SMs to use max_autotune_gemm mode and i don't know how to exploit thi feature.
PS: I’m working on complex- valued models model with a ComplexConvolution class that uses two nn.Conv2D (for real and imaginary part )