This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update on "[bc-breaking] rename top level UX to `convert_to_float8_tr…
…aining`" Summary: Old name: `swap_linear_with_float8_linear` New name: `convert_to_float8_training` Choosing a more generic name, with the following improvements from the old name: 1. doesn't mention module swaps, which is an implementation detail 2. doesn't mention `Float8Linear`, which is an implementation detail 3. clarifies that this is for training, not to be confused with inference APIs 4. doesn't mention `linear`, which gives more freedom to add other modules later ``` find . -name '*.py' -print0 | xargs -0 sed -i 's/swap_linear_with_float8_linear/convert_to_float8_training/g' ``` Test Plan: ``` ./test/test_everything.sh ``` Reviewers: Subscribers: Tasks: Tags: [ghstack-poisoned]
- Loading branch information