Open
Description
λ mypy --version
mypy 1.11.2 (compiled: yes)
λ uv pip show torch
Using Python 3.11.8 environment at /Users/shantanu/.virtualenvs/openai-wfht
Name: torch
Version: 2.1.0
Location: /Users/shantanu/.virtualenvs/openai-wfht/lib/python3.11/site-packages
Requires: filelock, fsspec, jinja2, networkx, sympy, typing-extensions
Required-by: ...
λ time mypy -c 'import torch' --no-incremental
Success: no issues found in 1 source file
mypy -c 'import torch' --no-incremental 33.09s user 2.73s system 98% cpu 36.391 total
λ time mypy -c 'import torch'
Success: no issues found in 1 source file
mypy -c 'import torch' 6.24s user 0.88s system 95% cpu 7.454 total
We use a lot of torch at work, performance is probably the biggest reason folks at work switch to a different type checker.