Skip to content

Commit 8a9bbc9

Browse files
Update docs
1 parent ccbf299 commit 8a9bbc9

File tree

92 files changed

+527
-579
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+527
-579
lines changed

_sources/autoapi/tilelang/autotuner/param/index.rst.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Module Contents
9797

9898

9999
.. py:attribute:: out_idx
100-
:type: Optional[Union[List[int], int]]
100+
:type: list[int] | int | None
101101
:value: None
102102

103103

@@ -115,7 +115,7 @@ Module Contents
115115

116116

117117
.. py:attribute:: target_host
118-
:type: Union[str, tvm.target.Target]
118+
:type: str | tvm.target.Target
119119
:value: None
120120

121121

@@ -127,7 +127,7 @@ Module Contents
127127

128128

129129
.. py:attribute:: pass_configs
130-
:type: Optional[Dict[str, Any]]
130+
:type: dict[str, Any] | None
131131
:value: None
132132

133133

@@ -310,37 +310,37 @@ Module Contents
310310

311311

312312
.. py:attribute:: latency
313-
:type: Optional[float]
313+
:type: float | None
314314
:value: None
315315

316316

317317

318318
.. py:attribute:: config
319-
:type: Optional[dict]
319+
:type: dict | None
320320
:value: None
321321

322322

323323

324324
.. py:attribute:: ref_latency
325-
:type: Optional[float]
325+
:type: float | None
326326
:value: None
327327

328328

329329

330330
.. py:attribute:: libcode
331-
:type: Optional[str]
331+
:type: str | None
332332
:value: None
333333

334334

335335

336336
.. py:attribute:: func
337-
:type: Optional[Callable]
337+
:type: Callable | None
338338
:value: None
339339

340340

341341

342342
.. py:attribute:: kernel
343-
:type: Optional[Callable]
343+
:type: Callable | None
344344
:value: None
345345

346346

_sources/autoapi/tilelang/carver/analysis/index.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Module Contents
5858

5959

6060
.. py:property:: dom
61-
:type: Union[int, tvm.tir.PrimExpr]
61+
:type: int | tvm.tir.PrimExpr
6262

6363

6464
The iteration domain of the loop.
@@ -80,7 +80,7 @@ Module Contents
8080

8181

8282
.. py:attribute:: iters
83-
:type: List[IterInfo]
83+
:type: list[IterInfo]
8484

8585

8686
.. py:attribute:: block_rv

_sources/autoapi/tilelang/carver/arch/arch_base/index.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Module Contents
5151

5252

5353
.. py:attribute:: transaction_size
54-
:type: List[int]
54+
:type: list[int]
5555
:value: [0, 0]
5656

5757

@@ -63,7 +63,7 @@ Module Contents
6363

6464

6565
.. py:attribute:: bandwidth
66-
:type: List[int]
66+
:type: list[int]
6767
:value: [0, 0]
6868

6969

_sources/autoapi/tilelang/carver/arch/cdna/index.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ Module Contents
7676

7777

7878
.. py:attribute:: transaction_size
79-
:type: List[int]
79+
:type: list[int]
8080
:value: [32, 128]
8181

8282

8383

8484
.. py:attribute:: bandwidth
85-
:type: List[int]
85+
:type: list[int]
8686
:value: [1300, 14000]
8787

8888

_sources/autoapi/tilelang/carver/arch/cuda/index.rst.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,19 +100,19 @@ Module Contents
100100

101101

102102
.. py:attribute:: transaction_size
103-
:type: List[int]
103+
:type: list[int]
104104
:value: [32, 128]
105105

106106

107107

108108
.. py:attribute:: bandwidth
109-
:type: List[int]
109+
:type: list[int]
110110
:value: [750, 12080]
111111

112112

113113

114114
.. py:attribute:: available_tensor_instructions
115-
:type: List[TensorInstruction]
115+
:type: list[TensorInstruction]
116116
:value: None
117117

118118

_sources/autoapi/tilelang/carver/roller/hint/index.rst.txt

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ Module Contents
3030

3131

3232
.. py:attribute:: AS_shape
33-
:type: Tuple[int]
33+
:type: tuple[int]
3434

3535

3636
.. py:attribute:: BS_shape
37-
:type: Tuple[int]
37+
:type: tuple[int]
3838

3939

4040
.. py:attribute:: AF_shape
41-
:type: Tuple[int]
41+
:type: tuple[int]
4242

4343

4444
.. py:attribute:: BF_shape
45-
:type: Tuple[int]
45+
:type: tuple[int]
4646

4747

4848
.. py:attribute:: tc_axis
49-
:type: Tuple[int]
49+
:type: tuple[int]
5050

5151

5252
.. py:class:: Stride(stride = 1, ax = -1)
@@ -195,9 +195,6 @@ Module Contents
195195

196196
.. py:class:: Hint
197197
198-
Bases: :py:obj:`object`
199-
200-
201198
Central configuration class for managing various parameters of computational tasks.
202199

203200

@@ -265,7 +262,7 @@ Module Contents
265262

266263

267264
.. py:attribute:: vectorize
268-
:type: Dict[str, int]
265+
:type: dict[str, int]
269266

270267

271268
.. py:attribute:: pipeline_stage
@@ -279,7 +276,7 @@ Module Contents
279276

280277

281278
.. py:attribute:: opt_shapes
282-
:type: Dict[str, int]
279+
:type: dict[str, int]
283280

284281

285282
.. py:attribute:: intrin_info
@@ -292,7 +289,7 @@ Module Contents
292289

293290

294291
.. py:attribute:: pass_context
295-
:type: Dict
292+
:type: dict
296293

297294

298295
.. py:method:: to_dict()
@@ -307,12 +304,12 @@ Module Contents
307304
308305
309306
.. py:property:: raxis_order
310-
:type: List[int]
307+
:type: list[int]
311308

312309

313310

314311
.. py:property:: step
315-
:type: List[int]
312+
:type: list[int]
316313

317314

318315

_sources/autoapi/tilelang/carver/roller/node/index.rst.txt

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,12 @@ Module Contents
4040
4141
.. py:class:: BlockAnalyzer(sch)
4242
43-
Bases: :py:obj:`object`
44-
45-
4643
.. py:attribute:: sch
4744
:type: tvm.tir.Schedule
4845

4946

5047
.. py:attribute:: block_infos
51-
:type: List[tilelang.carver.analysis.BlockInfo]
48+
:type: list[tilelang.carver.analysis.BlockInfo]
5249
:value: None
5350

5451

@@ -100,9 +97,6 @@ Module Contents
10097

10198
.. py:class:: Node(tags = None, name = 'Node')
10299
103-
Bases: :py:obj:`object`
104-
105-
106100
.. py:attribute:: name
107101
:value: 'Node'
108102

@@ -127,12 +121,12 @@ Module Contents
127121
128122
129123
.. py:property:: inputs
130-
:type: List[Edge]
124+
:type: list[Edge]
131125

132126

133127

134128
.. py:property:: outputs
135-
:type: List[Edge]
129+
:type: list[Edge]
136130

137131

138132

@@ -193,19 +187,19 @@ Module Contents
193187

194188

195189
.. py:attribute:: schedule_stages
196-
:type: List[tvm.tir.schedule.schedule.BlockRV]
190+
:type: list[tvm.tir.schedule.schedule.BlockRV]
197191
:value: []
198192

199193

200194

201195
.. py:attribute:: blocks
202-
:type: List[tvm.tir.schedule.schedule.BlockRV]
196+
:type: list[tvm.tir.schedule.schedule.BlockRV]
203197
:value: []
204198

205199

206200

207201
.. py:attribute:: output_blocks
208-
:type: List[tvm.tir.schedule.schedule.BlockRV]
202+
:type: list[tvm.tir.schedule.schedule.BlockRV]
209203
:value: None
210204

211205

_sources/autoapi/tilelang/carver/roller/policy/default/index.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Module Contents
3131

3232

3333
.. py:attribute:: nodes
34-
:type: List[tilelang.carver.roller.node.PrimFuncNode]
34+
:type: list[tilelang.carver.roller.node.PrimFuncNode]
3535
:value: []
3636

3737

@@ -41,7 +41,7 @@ Module Contents
4141

4242

4343
.. py:attribute:: tags
44-
:type: Dict
44+
:type: dict
4545

4646

4747
.. py:attribute:: rasterization

_sources/autoapi/tilelang/carver/roller/policy/tensorcore/index.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Module Contents
5454

5555

5656
.. py:attribute:: block_reduction_depth
57-
:type: Optional[int]
57+
:type: int | None
5858
:value: None
5959

6060

_sources/autoapi/tilelang/carver/roller/shape_inference/tir/index.rst.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ Module Contents
5050
5151
.. py:class:: TensorDepNode(name)
5252
53-
Bases: :py:obj:`object`
54-
55-
5653
For tensor dependency analysis.
5754

5855

@@ -76,9 +73,6 @@ Module Contents
7673
7774
.. py:class:: DependencyAnalysis(deps)
7875
79-
Bases: :py:obj:`object`
80-
81-
8276
.. py:attribute:: deps
8377
8478

0 commit comments

Comments
 (0)