Skip to content

Commit 1fe1dda

Browse files
committed
xe: jit: gemm: move dev_getenv to config.hpp
1 parent eca55fb commit 1fe1dda

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/gpu/intel/jit/gemm/generator/pieces/l3_prefetch.cxx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
/*******************************************************************************
3-
* Copyright 2024 Intel Corporation
3+
* Copyright 2024-2025 Intel Corporation
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -68,7 +68,7 @@ void BLASKernelGenerator<hw>::gemmInitL3Prefetch(bool nextWave, const GEMMProble
6868
problem, strategy, state);
6969

7070
#if 1
71-
if (dnnl::impl::gpu::intel::gpu_utils::dev_getenv("ALL_PF",0)) {
71+
if (getEnv("ALL_PF",0)) {
7272
if (doA) mov(1, nextFlagL3PFA, 0xFFFF);
7373
if (doB) mov(1, nextFlagL3PFB, 0xFFFF);
7474
}

src/gpu/intel/jit/gemm/include/config.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@
3333

3434
#define GENERATOR_BASE(hw) dnnl::impl::gpu::intel::jit::generator_t<hw>
3535

36+
inline int getEnv(const char *s, int def) {
37+
return dnnl::impl::gpu::intel::gpu_utils::dev_getenv(s, def);
38+
}
39+
3640
enum class GEMMVerbose {
3741
DebugInfo = dnnl::impl::verbose_t::debuginfo
3842
};
@@ -118,7 +122,6 @@ void injectStochasticRound(GENERATOR_BASE(hw) *g,
118122

119123
}
120124

121-
122125
#include "internal/namespace_end.hxx"
123126

124127
#endif /* header guard */

0 commit comments

Comments
 (0)