|
1 | 1 | /*******************************************************************************
|
2 |
| -* Copyright 2021-2024 Intel Corporation |
| 2 | +* Copyright 2021-2025 Intel Corporation |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
@@ -364,9 +364,9 @@ class loop_t {
|
364 | 364 | oss << " kind: " << kind_;
|
365 | 365 | if (unroll_factor_ != 1) oss << " unroll: " << unroll_factor_;
|
366 | 366 | std::vector<std::string> props;
|
367 |
| - if (is_root()) props.push_back("root"); |
368 |
| - if (is_fused_child()) props.push_back("fused"); |
369 |
| - if (is_split_parent()) props.push_back("split"); |
| 367 | + if (is_root()) props.emplace_back("root"); |
| 368 | + if (is_fused_child()) props.emplace_back("fused"); |
| 369 | + if (is_split_parent()) props.emplace_back("split"); |
370 | 370 | oss << "(" << make_seq_print_helper(props, ", ") << ")";
|
371 | 371 | return oss.str();
|
372 | 372 | }
|
@@ -623,8 +623,9 @@ class gemm_schedule_t {
|
623 | 623 | }
|
624 | 624 | auto &fused_loop = create_loop(fused_var, fused_bound);
|
625 | 625 | std::vector<std::reference_wrapper<loop_t>> loop_refs;
|
| 626 | + loop_refs.reserve(vars.size()); |
626 | 627 | for (auto &v : vars) {
|
627 |
| - loop_refs.push_back(find_loop(v)); |
| 628 | + loop_refs.emplace_back(find_loop(v)); |
628 | 629 | }
|
629 | 630 | fused_loop.set_fuse(loop_refs);
|
630 | 631 | set_bmnk_kind(fused_var, bmnk_kind(vars));
|
|
0 commit comments