P4 to Git Change 1191702 by gandryey@gera-dev-w7 on 2015/09/17 11:42:51

ECR #304775 - Remove EG/NI support
	- Remove buildNoOpt() method

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/platform/program.cpp#67 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/program.hpp#32 edit
This commit is contained in:
foreman
2015-09-17 11:56:58 -04:00
parent bc5a50bf7b
commit 2716079dd9
2 changed files with 0 additions and 91 deletions
-5
View File
@@ -92,7 +92,6 @@ private:
devicelist_t deviceList_;
std::string programLog_; //!< Log for parsing options, etc.
bool firstBuildNoOpt_; //!< Build program without optimizations
protected:
//! Destroy this program.
@@ -112,7 +111,6 @@ public:
, isIL_(isIL)
, symbolTable_(NULL)
, programLog_()
, firstBuildNoOpt_(true)
{ }
//! Construct a new program associated with a context.
@@ -187,9 +185,6 @@ public:
void* data = NULL,
bool optionChangable = true);
//! Build the program for the given devices without noalias optimization
bool buildNoOpt(const Device& device, const std::string& kernelName);
//! RTTI internal implementation
virtual ObjectType objectType() const {return ObjectTypeProgram;}
};