From c0c2767ebac2431cf7e93d1111bc8f778c3caa4c Mon Sep 17 00:00:00 2001 From: Jatin Chaudhary Date: Fri, 19 Jan 2024 17:30:44 +0000 Subject: [PATCH] SWDEV-425605 - remove exe_options, it was unused Change-Id: I0651f6a836d2f063caf651520de96d7675428771 [ROCm/clr commit: aacdb0075909c5d0649b5f3be64fb4d1a5cdaa88] --- projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp | 2 -- projects/clr/hipamd/src/hiprtc/hiprtcInternal.hpp | 1 - 2 files changed, 3 deletions(-) diff --git a/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp b/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp index b4d10e0ee3..89aa9064e5 100644 --- a/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp +++ b/projects/clr/hipamd/src/hiprtc/hiprtcInternal.cpp @@ -170,8 +170,6 @@ RTCCompileProgram::RTCCompileProgram(std::string name_) : RTCProgram(name_), fgp compile_options_.push_back("-fms-compatibility"); #endif AppendCompileOptions(); - - exe_options_.push_back("-O3"); } bool RTCCompileProgram::addSource(const std::string& source, const std::string& name) { diff --git a/projects/clr/hipamd/src/hiprtc/hiprtcInternal.hpp b/projects/clr/hipamd/src/hiprtc/hiprtcInternal.hpp index 5e196b7def..aae8b64f47 100644 --- a/projects/clr/hipamd/src/hiprtc/hiprtcInternal.hpp +++ b/projects/clr/hipamd/src/hiprtc/hiprtcInternal.hpp @@ -131,7 +131,6 @@ class RTCProgram { std::vector executable_; amd_comgr_data_set_t exec_input_; - std::vector exe_options_; }; class RTCCompileProgram : public RTCProgram {