File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 20
20
FOUROHFOUR_CUSTOM : 3 ,
21
21
} ;
22
22
23
+ // Repos that are expected to be moved to the meta-pytorch.org domain
24
+ const META_PYTORCH_PROJECTS = [
25
+ "ao" ,
26
+ "helion" ,
27
+ "torchcodec" ,
28
+ "torchft" ,
29
+ "data" ,
30
+ "torchx" ,
31
+ "torchtune" ,
32
+ "mobile-docs" ,
33
+ "tnt" ,
34
+ "botorch" ,
35
+ "captum" ,
36
+ "opacus" ,
37
+ "torchsnapshot" ,
38
+ "torcheval" ,
39
+ "multipy" ,
40
+ "text" ,
41
+ "live-website" ,
42
+ "live-old" ,
43
+ // Temporary test entries
44
+ "tritonparse" ,
45
+ "monarch" ,
46
+ "fakerepo" ,
47
+ ]
48
+
23
49
const PROJECTS = {
24
50
live : {
25
51
location : 'https://playtorch.dev/' ,
26
52
style : REDIRECT_STYLE . FULL ,
27
53
} ,
54
+ ...Object . fromEntries (
55
+ META_PYTORCH_PROJECTS . map ( project => [
56
+ project ,
57
+ {
58
+ location : `https://meta-pytorch.org/${ project } ` ,
59
+ style : REDIRECT_STYLE . FULL ,
60
+ }
61
+ ] )
62
+ ) ,
28
63
} ;
29
64
30
65
// eg "https://facebook.github.io/flux/docs/overview/"
You can’t perform that action at this time.
0 commit comments