File tree Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Expand file tree Collapse file tree 2 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ inline const std::set<std::string> CACHE_INVALIDATING_ENV_VARS = {
15
15
// clang-format off
16
16
" AMDGCN_ENABLE_DUMP" ,
17
17
" AMDGCN_USE_BUFFER_OPS" ,
18
- " DISABLE_FAST_REDUCTION" ,
19
18
" DISABLE_LLVM_OPT" ,
20
19
" DISABLE_MMA_V3" ,
21
20
" DISABLE_MMA_V5" ,
@@ -30,7 +29,6 @@ inline const std::set<std::string> CACHE_INVALIDATING_ENV_VARS = {
30
29
" MLIR_DISABLE_MULTITHREADING" ,
31
30
" TRITON_DEFAULT_FP_FUSION" ,
32
31
" TRITON_DISABLE_LINE_INFO" ,
33
- " TRITON_DISABLE_RESHAPE_ENCODING_INFERENCE" ,
34
32
" TRITON_ENABLE_LLVM_DEBUG" ,
35
33
" TRITON_HIP_GLOBAL_PREFETCH" ,
36
34
" TRITON_HIP_LOCAL_PREFETCH" ,
@@ -42,7 +40,6 @@ inline const std::set<std::string> CACHE_INVALIDATING_ENV_VARS = {
42
40
" TRITON_OVERRIDE_ARCH" ,
43
41
" USE_IR_LOC" ,
44
42
" NVPTX_ENABLE_DUMP" ,
45
- " STORE_TMEM_TO_GLOBAL_BYPASS_SMEM" ,
46
43
" ALLOW_LHS_TMEM_LAYOUT_CONVERSION" ,
47
44
" TRITON_F32_DEFAULT" ,
48
45
" TRITON_PREFER_TMEM_16x256_LAYOUT" ,
Original file line number Diff line number Diff line change @@ -2241,13 +2241,6 @@ struct TritonGPUInferLayoutInterface
2241
2241
return success ();
2242
2242
}
2243
2243
2244
- // Feature flag to disable this routine while it's relatively new.
2245
- // TODO(jlebar): Remove this once we're confident in the code.
2246
- if (triton::tools::getBoolEnv (
2247
- " TRITON_DISABLE_RESHAPE_ENCODING_INFERENCE" )) {
2248
- return failure ();
2249
- }
2250
-
2251
2244
// Cowardly refuse to handle encodings with multiple CTAs. CTAsPerCGA
2252
2245
// should be like the other fields in blocked encoding, but I'm not sure how
2253
2246
// to handle CTASplitNum.
You can’t perform that action at this time.
0 commit comments