Displaying 2 results from an estimated 2 matches for "getdevicenam".
Did you mean:
getdevicename
2004 Jun 22
2
pwlib compile error
...ourFormat(PString const&)'
/root/pwlib/lib/libpt_linux_x86_r.so: undefined reference to `typeinfo for
PBYTEArray'
/root/pwlib/lib/libpt_linux_x86_r.so: undefined reference to `typeinfo for
PChannel'
/root/pwlib/lib/libpt_linux_x86_r.so: undefined reference to
`PVideoOutputDevicePPM::GetDeviceNames() const'
/root/pwlib/lib/libpt_linux_x86_r.so: undefined reference to `typeinfo for
PObject'
/root/pwlib/lib/libpt_linux_x86_r.so: undefined reference to
`PString::Empty()'
/root/pwlib/lib/libpt_linux_x86_r.so: undefined reference to
`PVideoOutputDeviceNULL::GetMaxFrameBytes()'
/r...
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
...ateCode()
> + bool fail = LLVMTargetMachine::addPassesToEmitFile(PM, Out, FileType,
> + DisableVerify);
> + assert(fail);
> +
> + const AMDILSubtarget &STM = getSubtarget<AMDILSubtarget>();
> + std::string gpu = STM.getDeviceName();
> + if (gpu == "SI") {
> + PM.add(createSICodeEmitterPass(Out));
> + } else if (Subtarget.device()->getGeneration() <= AMDILDeviceInfo::HD6XXX) {
> + PM.add(createR600CodeEmitterPass(Out));
> + } else {
> + abort();
> + return true;
> + }...