Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,46 @@
FOUROHFOUR_CUSTOM: 3,
};

// Repos that are expected to be moved to the meta-pytorch.org domain
const META_PYTORCH_PROJECTS = [
"ao",
"helion",
"torchcodec",
"torchft",
"data",
"torchx",
"torchtune",
"mobile-docs",
"tnt",
"botorch",
"captum",
"opacus",
"torchsnapshot",
"torcheval",
"multipy",
"text",
"live-website",
"live-old",
// Temporary test entries
"tritonparse",
"monarch",
"fakerepo",
]

const PROJECTS = {
live: {
location: 'https://playtorch.dev/',
style: REDIRECT_STYLE.FULL,
},
...Object.fromEntries(
META_PYTORCH_PROJECTS.map(project => [
project,
{
location: `https://meta-pytorch.org/${project}`,
style: REDIRECT_STYLE.FULL,
}
])
),
};

// eg "https://facebook.github.io/flux/docs/overview/"
Expand Down