P4 to Git Change 1607675 by gandryey@gera-w8 on 2018/09/18 18:42:34
SWDEV-79445 - OCL generic changes and code clean-up Program compilation clean-up. Step#1: - Move device::Program implementation into a separate file - Combine the common fields accros all 3 layers into the abstract device::Program Affected files ... ... //depot/stg/opencl/drivers/opencl/runtime/device/device.cpp#230 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/device.hpp#318 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/devprogram.cpp#1 add ... //depot/stg/opencl/drivers/opencl/runtime/device/devprogram.hpp#1 add ... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpucompiler.cpp#159 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuprogram.cpp#241 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuprogram.hpp#73 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.cpp#72 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palprogram.hpp#29 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palvirtual.cpp#125 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocprogram.cpp#86 edit ... //depot/stg/opencl/drivers/opencl/runtime/device/rocm/rocprogram.hpp#35 edit
Este commit está contenido en:
@@ -1527,39 +1527,22 @@ bool Program::loadBinary(bool* hasRecompile) {
|
||||
|
||||
HSAILProgram::HSAILProgram(Device& device)
|
||||
: Program(device),
|
||||
llvmBinary_(),
|
||||
binaryElf_(NULL),
|
||||
rawBinary_(NULL),
|
||||
kernels_(NULL),
|
||||
maxScratchRegs_(0),
|
||||
isNull_(false),
|
||||
executable_(NULL),
|
||||
loaderContext_(this) {
|
||||
memset(&binOpts_, 0, sizeof(binOpts_));
|
||||
binOpts_.struct_size = sizeof(binOpts_);
|
||||
binOpts_.elfclass = LP64_SWITCH(ELFCLASS32, ELFCLASS64);
|
||||
binOpts_.bitness = ELFDATA2LSB;
|
||||
binOpts_.alloc = &::malloc;
|
||||
binOpts_.dealloc = &::free;
|
||||
loader_ = amd::hsa::loader::Loader::Create(&loaderContext_);
|
||||
}
|
||||
|
||||
HSAILProgram::HSAILProgram(NullDevice& device)
|
||||
: Program(device),
|
||||
llvmBinary_(),
|
||||
binaryElf_(NULL),
|
||||
rawBinary_(NULL),
|
||||
kernels_(NULL),
|
||||
maxScratchRegs_(0),
|
||||
isNull_(true),
|
||||
executable_(NULL),
|
||||
loaderContext_(this) {
|
||||
memset(&binOpts_, 0, sizeof(binOpts_));
|
||||
binOpts_.struct_size = sizeof(binOpts_);
|
||||
binOpts_.elfclass = LP64_SWITCH(ELFCLASS32, ELFCLASS64);
|
||||
binOpts_.bitness = ELFDATA2LSB;
|
||||
binOpts_.alloc = &::malloc;
|
||||
binOpts_.dealloc = &::free;
|
||||
isNull_ = true;
|
||||
loader_ = amd::hsa::loader::Loader::Create(&loaderContext_);
|
||||
}
|
||||
|
||||
|
||||
Referencia en una nueva incidencia
Block a user