pytorch/test/cpp/lazy
Edward Z. Yang fd5ac1e6b5 Rename SymbolicIntNode to SymIntNodeImpl (#82350)
Done via

```
git grep -l 'SymbolicIntNode' | xargs sed -i 's/SymbolicIntNode/SymIntNodeImpl/g'
```

Reasoning for the change:

* Sym is shorter than Symbolic, and consistent with SymInt
* You usually will deal in shared_ptr<...>, so we're going to
  reserve the shorter name (SymIntNode) for the shared pointer.

But I don't want to update the Python name, so afterwards I ran

```
 git grep -l _C.SymIntNodeImpl | xargs sed -i 's/_C.SymIntNodeImpl/_C.SymIntNode/'
```

and manually fixed up the binding code

Signed-off-by: Edward Z. Yang <ezyang@fb.com>
Pull Request resolved: https://github.com/pytorch/pytorch/pull/82350
Approved by: https://github.com/Krovatkin
2022-07-28 18:27:45 +00:00
..
CMakeLists.txt [LT] Add a trie data structure for caching IR nodes 2022-05-04 23:48:03 +00:00
test_backend_device.cpp [LT] Add a new backend interface [DUP of the original] (#81662) 2022-07-19 01:15:22 +00:00
test_cache.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_ir_util.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_ir.cpp have a common interface to extract metadata from SizeNodes (#78088) 2022-06-15 04:59:08 +00:00
test_lazy_ops_util.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_lazy_ops_util.h [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_lazy_ops.cpp Rename SymbolicIntNode to SymIntNodeImpl (#82350) 2022-07-28 18:27:45 +00:00
test_misc.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_permutation_util.cpp [LT] Upstream LazyView and view ops IR Nodes (#69277) 2021-12-04 08:44:54 -08:00
test_shape.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_symbolic_shape.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_tensor_impl.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_trie_cache.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00
test_util.cpp [lint] autoformat test/cpp and torch/csrc 2022-06-11 21:11:16 +00:00