Skip to content

Commit

Permalink
* lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hanke580 committed Jan 12, 2021
1 parent 297cd85 commit 7e93d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/tvm/topi/einsum.h
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@ inline std::vector<std::string> Split(const std::string& str, const std::string&
* if no output, the vector[1] is NULL.
* "ab, bc -> ac" => ["ab,bc", "ac"]
*/
inline std::tuple<std::string, std::string> ParseEinsumInput(std::string subscripts,
const std::vector<Array<PrimExpr>>& operands) {
inline std::tuple<std::string, std::string> ParseEinsumInput(
std::string subscripts, const std::vector<Array<PrimExpr>>& operands) {
const std::string einsum_symbols = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
std::bitset<128> einsum_symbols_set;
for (const char& c : einsum_symbols) {
Expand Down

0 comments on commit 7e93d3d

Please sign in to comment.