Skip to content

Commit 2ae4dd8

Browse files
fda0igcbot
authored andcommitted
Remove ZEBin user options and internal option
Removes ZEBin related options. These options were already deprecated. After this change any usage of these options will thrown an error.
1 parent 7e85c4e commit 2ae4dd8

File tree

3 files changed

+0
-16
lines changed

3 files changed

+0
-16
lines changed

IGC/OCLFE/igd_fcl_mcl/source/clang_tb.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1356,10 +1356,6 @@ namespace TC
13561356
(strcmp(pParam, "-ze-force-global-mem-allocation") == 0) || // temp
13571357
(strcmp(pParam, "-cl-no-local-to-generic") == 0) || // temp
13581358
(strcmp(pParam, "-ze-no-local-to-generic") == 0) || // temp
1359-
(strcmp(pParam, "-cl-disable-zebin") == 0) || // deprecated
1360-
(strcmp(pParam, "-ze-disable-zebin") == 0) || // deprecated
1361-
(strcmp(pParam, "-cl-enable-zebin") == 0) || // deprecated
1362-
(strcmp(pParam, "-ze-enable-zebin") == 0) || // deprecated
13631359
(strcmp(pParam, "-cl-intel-debug-info") == 0) ||
13641360
(strncmp(pParam, "-dump-opt-llvm", 14) == 0) ||
13651361
(strcmp(pParam, "-cl-no-subgroup-ifp") == 0) ||

IGC/Options/include/igc/Options/CommonApiOptions.td

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,6 @@ defm library_compilation : CommonFlag<"library-compilation">;
4747
defm library_compile_simd : CommonSeparate<"library-compile-simd">;
4848
defm : CommonJoined<"library-compile-simd=">, Alias<library_compile_simd_common>;
4949

50-
// -cl-enable-zebin, -ze-enable-zebin
51-
defm enable_zebin : CommonFlag<"enable-zebin">,
52-
HelpText<"Deprecated - Emit level zero binary (zebin)">;
53-
54-
// -cl-disable-zebin, -ze-disable-zebin
55-
defm disable_zebin : CommonFlag<"disable-zebin">,
56-
HelpText<"Deprecated - Emit binary in legacy format">;
57-
5850
defm exp_register_file_size : CommonSeparate<"exp-register-file-size">,
5951
HelpText<"Set amount of registers used by regalloc">;
6052
defm : CommonJoined<"exp-register-file-size=">, Alias<exp_register_file_size_common>,

IGC/Options/include/igc/Options/CommonInternalOptions.td

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ defm emit_zebin_visa_sections : CommonFlag<"emit-zebin-visa-sections">,
2323
def emit_visa_only : PlainFlag<"emit-visa-only">,
2424
HelpText<"Compile until vISA">;
2525

26-
// -cl-allow-zebin, -ze-allow-zebin
27-
defm allow_zebin : CommonFlag<"allow-zebin">,
28-
HelpText<"Deprecated - Emit level zero binary">;
29-
3026
// -cl-disable-zebin, -ze-disable-zebin
3127
defm disable_zebin : CommonFlag<"disable-zebin">,
3228
HelpText<"Emit binary in legacy format">;

0 commit comments

Comments
 (0)