search for: pushkar

Displaying 10 results from an estimated 10 matches for "pushkar".

2009 Apr 25
1
[LLVMdev] lli and runtime error
Hello Pushkar, >I get the error Could not resolve external global address: __dso_handle Based on what I've read on the mailing list in the past, that's because the interpreter doesn't support non-bitcode external addresses such as the function calls used to do input and output of data. As such...
2009 Dec 13
1
Mapping from granulepos to absolute time
...= Total number of keyframes * Key frame interval + prediction frames Total number of millisecs = (Total number of frames / Frame rate) * 1000 Is this correct? If so, where does the key frame interval come from, I don't think it is in the Identification or the setup headers. Thanks in advance. pushkar -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/theora/attachments/20091213/316604bc/attachment.htm
2009 Nov 05
1
[LLVMdev] Clang and AST Generation
...y Clang using the "-ast-print" option to the clang-cc, I see that the pre-processor expands the code(expected). Is there a way to get around and not print all the information all the information and also keep the AST as close to the source as possible( avoiding constant folding). Thanks, Pushkar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091105/53ee97eb/attachment.html>
2006 Aug 26
1
Implementing EM Algorithm in R!
Hi All, I need some help in how one can implement maximumlikelihood estimation for models with discrete hidden variables in EM in R. Regards [[alternative HTML version deleted]]
2015 Jul 11
2
[LLVMdev] StringMap question
Hello everyone! I'm a newcomer for the great LLVM project. I've started to explore the source code of LLVM project to become more familiar with it, and I've found some strange usage of move semantics in constructor of StringMapImpl( StringMapImpl &&RHS) {...} class in include/llvm/ADT/StringMap.h line 56. Could anyone explain me the purpose of zeroing of all fields of RHS in
2009 Apr 25
0
[LLVMdev] lli and runtime error
...global address: __dso_handle followed by some dump. Am I missing something? Do I need to include anything else while compiling the source?It runs fine when I try to JIT it and run i.e. lli dgemm.bc I couldn't find much help in the documentation regarding the same! Thanks in advance --Pushkar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090425/2e67726a/attachment.html>
2008 Feb 22
0
NFS boot of Xen DomU - Goes to NFS version 2
...ite in the fstab file given in our DomU system?? Is it that we need to change some configurations in the Xen itself? ( Needless to say I have done all i need while compiling kernel regarding the support for NFS version 3/root support etc .) Thanks in advance for any suggestions or leads. Regards, Pushkar. Send instant messages to your online friends http://uk.messenger.yahoo.com _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2015 Jul 29
1
[LLVMdev] Clang: strange malloc usage
Hello everyone! I've found weird lines of code in tools/libclang/CIndex.cpp file in clang sources. Function clang_tokenize holds the following lines: *Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size()); memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size()); Since malloc function can return null pointer and there are no checks for this case, memmove invocation
2008 Feb 20
1
Problem - Boot Xen 3.0.1 Guest using NFS
...k is unreachable [FAILED] /etc/rc4.d/S10network: line 165: /dev/null: Network is unreachable /etc/rc4.d/S10network: line 167: touch: command not found /etc/rc.d/rc: line 90: rm: command not found WHAT DO YOU THING IS THE PROBLEM HERE?? THANKS A MILLION IN ADVANCE FOR ANY HELP OR LEADS. Regards, Pushkar. Send instant messages to your online friends http://uk.messenger.yahoo.com _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2015 Jul 29
0
[LLVMdev] Clang
Hello everyone! I've found strange code in tools/libclang/CIndex.cpp in function clang_tokenize(). Lines 5570*Tokens = (CXToken *)malloc(sizeof(CXToken) * CXTokens.size()); memmove(*Tokens, CXTokens.data(), sizeof(CXToken) * CXTokens.size()); seem weird without checking the result of malloc-function invocation. Since malloc() can return null pointer, this value can be used in memmove