pytorch/torchgen
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
..
api Remove unused line (#82019) 2022-07-24 16:30:37 +00:00
decompositions
dest Rename SymbolicIntNode to SymIntNodeImpl (#82350) 2022-07-28 18:27:45 +00:00
operator_versions Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00
selective_build Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00
shape_functions Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00
static_runtime Remove unused local variables from generator.py (#81505) 2022-07-18 16:26:59 +00:00
__init__.py Package config/template files with torchgen (#78942) 2022-06-07 13:33:55 +00:00
BUCK.oss rename BUILD.buck to BUCK.oss (#78792) 2022-06-03 07:23:16 +00:00
BUILD.bazel
build.bzl
code_template.py Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00
context.py Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00
gen_backend_stubs.py a new section for ir generation (#81847) 2022-07-26 20:39:07 +00:00
gen_functionalization_type.py fix view_copy kernel striding check logic (#81553) 2022-07-19 13:47:05 +00:00
gen_lazy_tensor.py a new section for ir generation (#81847) 2022-07-26 20:39:07 +00:00
gen_vmap_plumbing.py Generate vmap plumbing on all native_functions, not just ones in allowlist (#82352) 2022-07-27 20:39:37 +00:00
gen.py Make factory functions CompositeExplicitAutograd (#82251) 2022-07-28 18:18:51 +00:00
local.py Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00
model.py Make factory functions CompositeExplicitAutograd (#82251) 2022-07-28 18:18:51 +00:00
native_function_generation.py fix overload ambiguity with functional ops; fix _foreach op grouping (#80556) 2022-07-06 12:45:11 +00:00
utils.py Apply ufmt linter to all py files under torchgen (#81570) 2022-07-16 03:52:25 +00:00