P4 to Git Change 1487653 by wchau@wchau_OCL_boltzmann on 2017/11/28 11:28:09

SWDEV-119491 - Add support for cl_amd_assembly_program extension
	This is a sub-task of SWDEV-134396.  Part 1/4 of the required changes:
	  (1) OpenCL API / Runtime, (2) ROCm Runtime - compiler invocation, (3) ROCm Driver, (4) Enabling Extension

Affected files ...

... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_common.hpp#19 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_context.cpp#57 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_program.cpp#45 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/khronos/headers/opencl1.2/CL/cl_ext.h#19 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/khronos/headers/opencl2.0/CL/cl_ext.h#35 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/khronos/headers/opencl2.1/CL/cl_ext.h#12 edit
... //depot/stg/opencl/drivers/opencl/api/opencl/khronos/headers/opencl2.2/CL/cl_ext.h#6 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/device.cpp#215 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/device.hpp#293 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/program.cpp#90 edit
... //depot/stg/opencl/drivers/opencl/runtime/platform/program.hpp#42 edit


[ROCm/clr commit: 1f86279494]
This commit is contained in:
foreman
2017-11-28 11:41:42 -05:00
parent 95d2f777a0
commit f898f91b38
4 changed files with 24 additions and 10 deletions
@@ -72,6 +72,12 @@ class Program : public RuntimeObject {
typedef std::map<Device const*, device::Program*> deviceprograms_t;
typedef std::map<std::string, Symbol> symbols_t;
enum Language {
Binary = 0,
OpenCL_C,
SPIRV,
Assembly
};
private:
//! Replaces the compiled program with the new version from HD
void StubProgramSource(const std::string& app_name);
@@ -80,7 +86,7 @@ class Program : public RuntimeObject {
SharedReference<Context> context_;
std::string sourceCode_; //!< Strings that make up the source code
bool isSPIRV_; //!< The binary image is SPIRV
Language language_; //!< Input source language
devicebinary_t binary_; //!< The binary image, provided by the app
symbols_t* symbolTable_; //!< The program's kernels symbol table
std::string kernelNames_; //!< The program kernel names
@@ -103,15 +109,16 @@ class Program : public RuntimeObject {
public:
//! Construct a new program to be compiled from the given source code.
Program(Context& context, const std::string& sourceCode, bool isSPIRV = false)
Program(Context& context, const std::string& sourceCode, Language language)
: context_(context),
sourceCode_(sourceCode),
isSPIRV_(isSPIRV),
language_(language),
symbolTable_(NULL),
programLog_() {}
//! Construct a new program associated with a context.
Program(Context& context) : context_(context), isSPIRV_(false), symbolTable_(NULL) {}
Program(Context& context, Language language = Binary)
: context_(context), language_(language), symbolTable_(NULL) {}
//! Returns context, associated with the current program.
const Context& context() const { return context_(); }