search for: passted

Displaying 11 results from an estimated 11 matches for "passted".

Did you mean: passed
2019 Jul 22
2
Run llvm pass from standalone project
Hi all, I am trying to use LLVM's AliasAnalysis pass, but from a standalone tool that uses llvm libraries. The following is the code snippet I am currently using. PassBuilder PB; auto mod_manager = ModuleAnalysisManager { }; PB.registerModuleAnalyses(mod_manager); AAResults& AAR = mod_manager.getResult<AAManager>(*M); But the code fails at .getResult with the following error:
2018 Aug 21
2
Function optimization pass
Hi Philip, Thanks for the response. Under llvm-5.0.2 and llvm-6.0.1 in Debug mode, the crash hit at the same assertion: /usr/local/include/llvm/IR/PassManager.h:689: typename PassT::Result& llvm::AnalysisManager<IRUnitT, ExtraArgTs>::getResult(IRUnitT&, ExtraArgTs ...) [with PassT = llvm::InnerAnalysisManagerProxy<llvm::AnalysisManager<llvm::Loop,
2018 Aug 20
2
Function optimization pass
This question has been submitted to stackoverflow (https://stackoverflow.com/questions/51934964/function-optimization-pass) but someone suggested me that it should be submitted to llvm-dev mailing list instead. I'm sorry for the duplication. I am trying to use PassBulider and FunctionPassManager || to optimize a function in a module, what I have done is: mod = ...load module from LLVM
2012 May 09
2
plot betadisper, change of pch
Hello! After performing an analysis with betadisper, package vegan I would like to plot the results - so far, so good. But I would also like to "tune" a little bit the plotting characters, as '+' and 'x' are a little to similar... My (boiled down) code: [See session info at the bottom of the mail, vegan is vegan_2.0-3] mod <- betadisper(mydata, mygroups,
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
Tom, I think it might be productive to fork this thread to discuss making the requirements for upstreaming a new LLVM target more explicit and open. I'd also like to gauge interest in an idea I've discussed privately with a few community members, namely the concept of having a semi-official "incubation" system whereby proposed backends could get a trial run before becoming part
2003 Jan 21
2
How to convert jpg into lss format
I would like to to know about conversion from jpg file to lss format. I used ppmtolss16. It is giving following errors. for .jpg file: ppmtolss16: stdin is not a raw PPM file at ppmtolss16 line 105, <STDIN> line 1. for .png files: ppmtolss16: stdin is not a raw PPM file at ppmtolss16 line 105, <STDIN> line 1. from .ppm file: ( I converted .jpg file in to .ppm file using irfanview)
2006 Apr 15
6
Phones that work well through NAT
Hi, everyone, We've been reasonably happy with Polycom SoundPoint phones, but we only have them installed on the LAN. I've read that they have problems working across NAT. So ... I guess I have a few questions. First, is there a way to get Polycoms to work well over NAT? If not, then are there phones of comparable voice quality that do work well over NAT? Without costing a lot more?
2003 Mar 18
1
Intel 82557-based Integrated Ethernet PCI (10/100)
HI zytor, I hope you can help me. I have above network chipset on a Mitsubishi im-2000 mobo. I don't see an actual chip on the mobo w/ this ID so I suspect it embedded in the mobo BIOS or in one of the 3 Intel chips. I am attempting to use LTSP to boot a workstation w/ above NIC chipset. It has imbedded boot to net software (Intel Landesk service agt v.99b) using PXE. I can't get it
2022 Feb 02
1
qemu-user-static: mis-emulates something to do with process/signal handling (m68k, s390x, …)
On Tue, 2022-02-01 at 16:23 +0000, Thorsten Glaser wrote: > retitle 925358 qemu-user-static: mis-emulates something to do with process/signal handling (m68k, s390x, ?) > affects 925358 klibc-dev > thanks > > This still happens. (And retitling because I almost filed a bug > against klibc again? oops?) > > Look for ?mtest-external? (second occurrence) in: >
2003 Jan 21
1
(v2) quadratic trends and changes in slopes (R-help digest, Vol 1 #52 - 16 msgs)
...ed is appended. I hope this meets your needs. Chuck White # R program for working example at: # http://www.gseis.ucla.edu/courses/ed230bc1/cnotes4/trend2.html # # Copy and paste the example data from the web to a plain text editor # and save as 'example.txt'. If this program is copied and passted into # the R Console then the program is expected to run without further # operator intervention. #Read the data as follows: example<-read.table("example.txt", header = FALSE, col.names=c('y','grp','o1','o2','o3')) example # Make variable nam...
2007 Jul 02
1
[LLVMdev] suggestion: multiple results from function call.
Hello A suggestion to LLVM (assembly) language designers. It could be worthwhile to extend the LLVM language http://llvm.org/docs/LangRef.html#i_call so that calls may return more than one result (for example, Common lisp functions can return more than one result). The intent could be to extend the ABI calling conventions to permit a function to return a few results (all in registers), instead