Home
last modified time | relevance | path

Searched refs:deviceProgramData (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/angle/src/libANGLE/renderer/vulkan/
H A DCLProgramVk.cpp693 const DeviceProgramData *deviceProgramData = getDeviceProgramData(device.getNative()); in getBuildInfo() local
698 valStatus = deviceProgramData->buildStatus; in getBuildInfo()
703 copyValue = deviceProgramData->buildLog.c_str(); in getBuildInfo()
704 copySize = deviceProgramData->buildLog.size() + 1; in getBuildInfo()
711 valUInt = deviceProgramData->binaryType; in getBuildInfo()
846 DeviceProgramData &deviceProgramData = mAssociatedDevicePrograms[device->getNative()]; in buildInternal() local
864 deviceProgramData.buildLog = in buildInternal()
869 deviceProgramData.buildStatus = CL_BUILD_ERROR; in buildInternal()
875 deviceProgramData.IR.assign(clspvCtx.mOutputBinSize, 0); in buildInternal()
876 std::memcpy(deviceProgramData.IR.data(), clspvCtx.mOutputBin, in buildInternal()
[all …]
H A DCLKernelVk.cpp186 const CLProgramVk::DeviceProgramData *deviceProgramData = nullptr; in createInfo() local
191 deviceProgramData = mProgram->getDeviceProgramData(ctx.getDevices()[i]->getNative()); in createInfo()
192 if (deviceProgramData == nullptr) in createInfo()
207 if (deviceProgramData->reflectionData.kernelCompileWorkgroupSize.contains(mName)) in createInfo()
210 deviceProgramData->reflectionData.kernelCompileWorkgroupSize.at(mName)[0], in createInfo()
211 deviceProgramData->reflectionData.kernelCompileWorkgroupSize.at(mName)[1], in createInfo()
212 deviceProgramData->reflectionData.kernelCompileWorkgroupSize.at(mName)[2]}; in createInfo()
H A DCLContextVk.cpp288 const CLProgramVk::DeviceProgramData *deviceProgramData = in linkProgram() local
292 ASSERT(deviceProgramData != nullptr); in linkProgram()
294 if (libraryOrObject.intersects(deviceProgramData->binaryType)) in linkProgram()
296 linkPrograms.push_back(deviceProgramData); in linkProgram()
H A DCLProgramVk.h341 angle::spirv::Blob stripReflection(const DeviceProgramData *deviceProgramData);