mirror of https://github.com/commaai/tinygrad.git
docs: add ConstType to dtypes, limit function to its member (#4714)
This commit is contained in:
parent
a41701ce71
commit
a894209bf7
|
@ -1,3 +1,7 @@
|
|||
::: tinygrad.dtypes
|
||||
options:
|
||||
members: true
|
||||
members: true
|
||||
members_order: source
|
||||
show_labels: false
|
||||
|
||||
::: tinygrad.dtype.ConstType
|
|
@ -1,7 +1,33 @@
|
|||
<!-- TODO: remove the imported members -->
|
||||
::: tinygrad.function
|
||||
options:
|
||||
members: true
|
||||
inherited_members: false
|
||||
members: [
|
||||
"Contiguous",
|
||||
"ContiguousBackward",
|
||||
"Cast",
|
||||
"Neg",
|
||||
"Reciprocal",
|
||||
"Sin",
|
||||
"Relu",
|
||||
"Log",
|
||||
"Exp",
|
||||
"Sqrt",
|
||||
"Sigmoid",
|
||||
"Sign",
|
||||
"Less",
|
||||
"Eq",
|
||||
"Xor",
|
||||
"Add",
|
||||
"Sub",
|
||||
"Mul",
|
||||
"Div",
|
||||
"Where",
|
||||
"Sum",
|
||||
"Max",
|
||||
"Expand",
|
||||
"Reshape",
|
||||
"Permute",
|
||||
"Pad",
|
||||
"Shrink",
|
||||
"Flip",
|
||||
]
|
||||
show_source: false
|
||||
members_order: source
|
||||
|
|
Loading…
Reference in New Issue