├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RFC-0000-template.md ├── RFC-0001-assets └── dispatch-flow.svg ├── RFC-0001-torch-function-for-methods.md ├── RFC-0006-conda-distribution.md ├── RFC-0011-InferenceMode.md ├── RFC-0012-profile-directed-typing.md ├── RFC-0017-PyTorch-Operator-Versioning.md ├── RFC-0019-Extending-PyTorch-Quantization-to-Custom-Backends.md ├── RFC-0020-Lightweight-Dispatch.md ├── RFC-0024-assets └── rfc-lifecycle.svg ├── RFC-0024-rfc-process.md ├── RFC-0025-sdpa-optm-cpu.md ├── RFC-0030-assets └── fp8_binary_formats.png ├── RFC-0030-native-fp8-dtype.md ├── RFC-0032-numpy-support-in-dynamo.md ├── RFC-0038-assets └── cpython_support.png └── RFC-0038-cpython-support.md /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_STORE -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /RFC-0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0000-template.md -------------------------------------------------------------------------------- /RFC-0001-assets/dispatch-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0001-assets/dispatch-flow.svg -------------------------------------------------------------------------------- /RFC-0001-torch-function-for-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0001-torch-function-for-methods.md -------------------------------------------------------------------------------- /RFC-0006-conda-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0006-conda-distribution.md -------------------------------------------------------------------------------- /RFC-0011-InferenceMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0011-InferenceMode.md -------------------------------------------------------------------------------- /RFC-0012-profile-directed-typing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0012-profile-directed-typing.md -------------------------------------------------------------------------------- /RFC-0017-PyTorch-Operator-Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0017-PyTorch-Operator-Versioning.md -------------------------------------------------------------------------------- /RFC-0019-Extending-PyTorch-Quantization-to-Custom-Backends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0019-Extending-PyTorch-Quantization-to-Custom-Backends.md -------------------------------------------------------------------------------- /RFC-0020-Lightweight-Dispatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0020-Lightweight-Dispatch.md -------------------------------------------------------------------------------- /RFC-0024-assets/rfc-lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0024-assets/rfc-lifecycle.svg -------------------------------------------------------------------------------- /RFC-0024-rfc-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0024-rfc-process.md -------------------------------------------------------------------------------- /RFC-0025-sdpa-optm-cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0025-sdpa-optm-cpu.md -------------------------------------------------------------------------------- /RFC-0030-assets/fp8_binary_formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0030-assets/fp8_binary_formats.png -------------------------------------------------------------------------------- /RFC-0030-native-fp8-dtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0030-native-fp8-dtype.md -------------------------------------------------------------------------------- /RFC-0032-numpy-support-in-dynamo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0032-numpy-support-in-dynamo.md -------------------------------------------------------------------------------- /RFC-0038-assets/cpython_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0038-assets/cpython_support.png -------------------------------------------------------------------------------- /RFC-0038-cpython-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/rfcs/HEAD/RFC-0038-cpython-support.md --------------------------------------------------------------------------------