You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
He Wei
7d9a783993
[auto-monad] Support side-effects by auto-monad
...
The basic idea is: exploits data dependency to control the execution order
of side-effect operations, and keep the semantics of ANF unchanged.
The ControlDepend primitive is removed and there are two primitives added:
1. UpdateState:
```
a = Assign(para, value)
```
became:
```
a = Assign(para, value, u)
u = UpdateState(u, a)
```
2. Load:
```
x = Add(para, value)
```
became:
```
p = Load(para, u)
x = Add(p, value)
u = UpdateState(u, p)
```
4 years ago
..
auto_monad
[auto-monad] Support side-effects by auto-monad
4 years ago
auto_parallel
Change TensorAdd to Add, from r1.1 to master
4 years ago
broadcast
fix broadcast bug
4 years ago
control
Change TensorAdd to Add, from r1.1 to master
4 years ago
cpp
!11526 unifiled lite & cloud api
4 years ago
dump
upgrade 0204
4 years ago
dynamic_shape
[auto-monad] Support side-effects by auto-monad
4 years ago
export
Change TensorAdd to Add, from r1.1 to master
4 years ago
fusion
Change TensorAdd to Add, from r1.1 to master
4 years ago
gnn
add tensor.ndim and rename tensor.size() to tensor.size
4 years ago
graph_kernel/ model
Change TensorAdd to Add, from r1.1 to master
4 years ago
hcom
Change GatherV2 to Gather r1.1 to master
4 years ago
heterogeneous_excutor
[auto-monad] Support side-effects by auto-monad
4 years ago
high_grad
high grad
4 years ago
host_device
modify_dense
4 years ago
mem_reuse
Change TensorAdd to Add, from r1.1 to master
4 years ago
mix_precision
add new auto mix presicion testcase and check the cast num
4 years ago
model_zoo_tests
modify transformer st
4 years ago
nccl
pipeline_split adapt parallel
4 years ago
networks
[auto-monad] Support side-effects by auto-monad
4 years ago
numpy_native
Add new np interfaces and add graph support
4 years ago
ops
[auto-monad] Support side-effects by auto-monad
4 years ago
probability
新增深度概率用例
4 years ago
profiler
Modify profiling dir structure to fit the new Run Package
4 years ago
ps
Change TensorAdd to Add, from r1.1 to master
4 years ago
pynative
Change TensorAdd to Add, from r1.1 to master
4 years ago
quantization
Change TensorAdd to Add, from r1.1 to master
4 years ago
recompute
add recompute nodes
4 years ago
summary
Add more log when collect graph and use summary operators
4 years ago
tbe_networks
Change TensorAdd to Add, from r1.1 to master
4 years ago
__init__.py
…