Home
last modified time | relevance | path

Searched refs:isCompute (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600AsmPrinter.cpp97 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) { in EmitProgramInfoR600()
DAMDGPUAsmPrinter.cpp1134 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) { in EmitProgramInfoSI()
1185 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) { in EmitPALMetadata()
DR600InstrInfo.cpp205 return !AMDGPU::isCompute(MF->getFunction().getCallingConv()) && in usesVertexCache()
215 return (AMDGPU::isCompute(MF->getFunction().getCallingConv()) && in usesTextureCache()
DSIFrameLowering.cpp614 if (AMDGPU::isCompute(MF.getFunction().getCallingConv())) { in emitEntryFunctionScratchSetup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.h534 bool isCompute(CallingConv::ID CC);
699 const bool IsCompute = AMDGPU::isCompute(CC); in getDefaultForCallingConv()
DAMDGPUBaseInfo.cpp900 bool isCompute(CallingConv::ID cc) { in isCompute() function
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DUtilsVk.cpp1114 bool isCompute = function >= Function::ComputeStartIndex; in ensureResourcesInitialized() local
1116 isCompute ? VK_SHADER_STAGE_COMPUTE_BIT : VK_SHADER_STAGE_FRAGMENT_BIT; in ensureResourcesInitialized()
1154 isCompute ? gl::ShaderType::Compute : gl::ShaderType::Fragment; in ensureResourcesInitialized()
1442 const bool isCompute = function >= Function::ComputeStartIndex; in setupProgram() local
1444 isCompute ? VK_SHADER_STAGE_COMPUTE_BIT : VK_SHADER_STAGE_FRAGMENT_BIT; in setupProgram()
1446 isCompute ? VK_PIPELINE_BIND_POINT_COMPUTE : VK_PIPELINE_BIND_POINT_GRAPHICS; in setupProgram()
1450 ASSERT(isCompute != (vsShader && pipelineDesc)); in setupProgram()
1454 if (isCompute) in setupProgram()
1492 if (isCompute) in setupProgram()
DCommandProcessor.h227 bool isCompute() const { return ((mProperties.queueFlags & VK_QUEUE_COMPUTE_BIT) > 0); } in isCompute() function
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DProgram.h348 bool isCompute() const { return mExecutable->hasLinkedShaderStage(ShaderType::Compute); } in isCompute() function