Skip to content

Commit cc16d35

Browse files
committed
xe: jit: ir: fixup memory inefficiencies
1 parent 5c5b94f commit cc16d35

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

src/gpu/intel/jit/ir/blocking.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2023-2024 Intel Corporation
2+
* Copyright 2023-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -50,7 +50,7 @@ class blocking_t {
5050
return loop_.is_empty() && thread_group_.is_empty() && iter_.is_empty();
5151
}
5252
bool is_spatial() const {
53-
for (auto d : {pvars::iw, pvars::ow}) {
53+
for (const auto &d : {pvars::iw, pvars::ow}) {
5454
if (iter_.has(d) && iter_[d] != 1) return true;
5555
}
5656
return false;

src/gpu/intel/jit/ir/config.hpp

+1-5
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,7 @@ class exec_cfg_param_t : public value_param_t<exec_config_t> {
130130
}
131131

132132
std::vector<std::string> accepted_keys() const override {
133-
std::vector<std::string> ret;
134-
ret.push_back("regs");
135-
ret.push_back("simd");
136-
ret.push_back("vec");
137-
return ret;
133+
return {"regs", "simd", "vec"};
138134
}
139135

140136
void set_from_str(

src/gpu/intel/jit/ir/gemm_schedule.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2021-2024 Intel Corporation
2+
* Copyright 2021-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -364,9 +364,9 @@ class loop_t {
364364
oss << " kind: " << kind_;
365365
if (unroll_factor_ != 1) oss << " unroll: " << unroll_factor_;
366366
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");
370370
oss << "(" << make_seq_print_helper(props, ", ") << ")";
371371
return oss.str();
372372
}
@@ -623,8 +623,9 @@ class gemm_schedule_t {
623623
}
624624
auto &fused_loop = create_loop(fused_var, fused_bound);
625625
std::vector<std::reference_wrapper<loop_t>> loop_refs;
626+
loop_refs.reserve(vars.size());
626627
for (auto &v : vars) {
627-
loop_refs.push_back(find_loop(v));
628+
loop_refs.emplace_back(find_loop(v));
628629
}
629630
fused_loop.set_fuse(loop_refs);
630631
set_bmnk_kind(fused_var, bmnk_kind(vars));

src/gpu/intel/jit/ir/ir.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,7 @@ struct expr_cast_helper_t {
326326

327327
static std::vector<T> call(const std::vector<expr_t> &exprs) {
328328
std::vector<T> ret;
329+
ret.reserve(exprs.size());
329330
for (auto &e : exprs)
330331
ret.push_back(to_cpp<T>(e));
331332
return ret;
@@ -345,6 +346,7 @@ struct expr_cast_helper_t<expr_t> {
345346
= typename std::enable_if<std::is_arithmetic<U>::value>::type>
346347
static std::vector<expr_t> call(const std::vector<U> &vec) {
347348
std::vector<expr_t> ret;
349+
ret.reserve(vec.size());
348350
for (auto &v : vec)
349351
ret.push_back(to_expr(v));
350352
return ret;

src/gpu/intel/jit/ir/tensor.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,8 @@ class layout_t {
553553
b_str.append(1, '*');
554554
}
555555
}
556-
ret = b_str + ret;
556+
b_str += ret;
557+
std::swap(ret, b_str);
557558
dense_stride = b.stride * b.block;
558559
seen[b.dim_idx] = true;
559560
}

0 commit comments

Comments
 (0)