2020-03-16 18:38:29 +00:00
|
|
|
#include "test/cpp/tensorexpr/padded_buffer.h"
|
|
|
|
|
|
|
|
|
|
#include <c10/util/Logging.h>
|
2021-10-19 04:58:26 +00:00
|
|
|
#include <c10/util/irange.h>
|
2020-04-08 22:39:24 +00:00
|
|
|
#include <sstream>
|
2020-03-16 18:38:29 +00:00
|
|
|
|
|
|
|
|
namespace torch {
|
|
|
|
|
namespace jit {
|
|
|
|
|
namespace tensorexpr {
|
|
|
|
|
|
|
|
|
|
int PaddedBufferBase::Index(const std::vector<int>& indices) const {
|
|
|
|
|
DCHECK_EQ(dims_.size(), indices.size());
|
|
|
|
|
int total_index = 0;
|
2021-10-19 04:58:26 +00:00
|
|
|
for (const auto i : c10::irange(dims_.size())) {
|
2020-03-16 18:38:29 +00:00
|
|
|
total_index += indices[i] * strides_[i];
|
|
|
|
|
}
|
|
|
|
|
return total_index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PaddedBufferBase::PaddedBufferBase(
|
|
|
|
|
const std::vector<int>& dims,
|
Make PyTorch code-base clang-tidy compliant (#56892)
Summary:
This is an automatic change generated by the following script:
```
#!/usr/bin/env python3
from subprocess import check_output, check_call
import os
def get_compiled_files_list():
import json
with open("build/compile_commands.json") as f:
data = json.load(f)
files = [os.path.relpath(node['file']) for node in data]
for idx, fname in enumerate(files):
if fname.startswith('build/') and fname.endswith('.DEFAULT.cpp'):
files[idx] = fname[len('build/'):-len('.DEFAULT.cpp')]
return files
def run_clang_tidy(fname):
check_call(["python3", "tools/clang_tidy.py", "-c", "build", "-x", fname,"-s"])
changes = check_output(["git", "ls-files", "-m"])
if len(changes) == 0:
return
check_call(["git", "commit","--all", "-m", f"NOLINT stubs for {fname}"])
def main():
git_files = check_output(["git", "ls-files"]).decode("ascii").split("\n")
compiled_files = get_compiled_files_list()
for idx, fname in enumerate(git_files):
if fname not in compiled_files:
continue
if fname.startswith("caffe2/contrib/aten/"):
continue
print(f"[{idx}/{len(git_files)}] Processing {fname}")
run_clang_tidy(fname)
if __name__ == "__main__":
main()
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/56892
Reviewed By: H-Huang
Differential Revision: D27991944
Pulled By: malfet
fbshipit-source-id: 5415e1eb2c1b34319a4f03024bfaa087007d7179
2021-04-28 21:09:06 +00:00
|
|
|
// NOLINTNEXTLINE(modernize-pass-by-value)
|
2020-03-16 18:38:29 +00:00
|
|
|
const std::string& name)
|
|
|
|
|
: dims_(dims), name_(name), strides_(dims.size()) {
|
2020-04-08 22:39:24 +00:00
|
|
|
for (int i = (int)dims.size() - 1; i >= 0; --i) {
|
|
|
|
|
if (i == (int)dims.size() - 1) {
|
2020-03-16 18:38:29 +00:00
|
|
|
strides_[i] = 1;
|
|
|
|
|
} else {
|
|
|
|
|
strides_[i] = strides_[i + 1] * dims[i + 1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
total_size_ = strides_[0] * dims[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace tensorexpr
|
|
|
|
|
} // namespace jit
|
|
|
|
|
} // namespace torch
|