search for: main2

Displaying 20 results from an estimated 22 matches for "main2".

Did you mean: main
2018 Mar 27
0
IRMover asserts "mapping to a source type" when repeatedly linking - usage or LLVM bug?
...uot;b'" into >>> "main1'". This module has a *non-opaque* definition of "t". Thus "t", >>> as referenced by "main1'", gets its type "t" completed (via >>> linkDefinedTypeBodies()). >>> 4) "main2" module gets created >>> 5) inlining clones module "a". As types are global to a context, "t" now >>> has a body, *and* the body appears to be from the source module >>> (actually "b'"). "mapping to a source type" is the...
2018 Mar 27
2
IRMover asserts "mapping to a source type" when repeatedly linking - usage or LLVM bug?
...module "b'" into > > "main1'". This module has a *non-opaque* definition of "t". Thus "t", > > as referenced by "main1'", gets its type "t" completed (via > > linkDefinedTypeBodies()). > > 4) "main2" module gets created > > 5) inlining clones module "a". As types are global to a context, "t" now > > has a body, *and* the body appears to be from the source module > > (actually "b'"). "mapping to a source type" is the result....
2010 Feb 03
3
How to flatten a tree (based on list) to a certain depth?
...o flatten it to be a list of frames. However, if I unlist(root), it will flatten the frames as well. Is there a simply way to flatten the tree to certain depth? aframe1=data.frame(x=1:3,y=1:3) aframe2=data.frame(u=7:9,v=11:13) aframe3=data.frame(p=3:5,q=6:8) main1=list(sub1=aframe1, sub2=aframe2) main2=list(sub3=aframe3) root=list(main1=main1, main2=main2) str(root) unlist(root)
2016 May 17
2
How to debug if LTO generate wrong code?
...n OS X. > > > $clang -emit-llvm -c main.c -o main.bc > $clang -emit-llvm -c a.c -o a.bc > $llvm-ar cr main.lib main.bc > $llvm-ar cr a.lib a.bc > $clang -O0 -flto main.lib a.lib -o main0 > $clang -O1 -flto main.lib a.lib -o main1 > $clang -O2 -flto main.lib a.lib -o main2 > > $nm main0 > … > 00000000004005a0 t foo1 > 0000000000400580 t foo2 > 00000000004005e0 t foo3 > 0000000000400530 t foo4 > 0000000000400500 t frame_dummy > … > $ nm main1 > … > 0000000000400550 t foo1 > 0000000000400580 t foo3 > 0000000000400530 t foo4 &...
2011 Oct 07
1
BIND and a second server resolving itself
...talling my second server in the datacenter but having problems getting to the net with it. I am going to use it as a KVMvirt host and do not want to run bind on its base OS. My thought was to just refer to it in the bind zones as an additional record (main.example.com is the working server now, main2.example.com is the new one). I cannot get the new one to reach out to the net, is there something I have to do on the new server to make it resolve correctly (I have listed my nameservers and hosts file and all that)? I think I have to allow my original server, the one hosting the nameservers,...
2003 Sep 08
1
3.0.0rc2 log error message - domain_user_groups related
Hi all: I've looked in the archives and seen several refernces to this error message but no solution put forth. I'm running samba 3.0.0 rc2 on RedHat 9. The following shows up for each of my users in the syslog: Sep 8 15:17:14 main2 smbd[31974]: get_domain_user_groups: primary gid of user [nsb] is not a Domain group ! Sep 8 15:17:14 main2 smbd[31974]: get_domain_user_groups: You should fix it, NT doesn't like that My smb.conf is the same one from 2.2.3 that I upgraded from. Any idea what is causing this and how to f...
2006 Jun 08
7
Sessions
In the Agile WD book it states regarding sesion data- "Rails uses the cookie-based approach". This can''t be entirely true can it ? Not that I''m complaining if it was but isn''t there some equivalent to say, PHP sessions ? Or am I wrong. Stuart -------------- next part -------------- An HTML attachment was scrubbed... URL:
2016 May 16
2
How to debug if LTO generate wrong code?
Hi Umesh, Thank you for the suggestion. I can use the "Brute force method " to narrow down the LTO wrong instructions here and there, but I still don't know why these wrong instructions are generated, and how to let Clang LTO don't generate those wrong instructions. I suspect the wrong code is caused by some LTO wrong optimization pass, so I hope to disable all optimizations in
2004 Jan 30
0
Re: DISA and authcodes (was: t410p)
...the number and run it through a comparison pass, and not use the authentication routines at all. ; ; for North American numbers... ; [main1] ; ; Take any number, and give it to the DISA. The DISA ; just then takes anything typed in within the (unchangeable) ; timer values, and hands it off to main2 to be post-processed. ; I include the standard i,h,t values for pedantic reasons. ; exten => _X.,1,DISA(no-password,main2) exten => _X.,2,Hangup ; exten => h,1,Hangup exten => i,1,Congestion exten => i,2,Hangup exten => t,1,Congestion exten => t,2,Hangup ; ; [main2] ; ; Now, se...
2016 May 07
2
About Clang llvm PGO
...t; > } > > > cout << sum << endl; > > > return 0; > > } > > > Makefile to compile the above code on Mac: > > > .PHONY: clean > > > regular: main.cpp > > clang++ -O2 main.cpp -o main.regular > > > hand: main2.cpp > > clang++ -O2 main2.cpp -o main.regular2 > > > instr: main.cpp > > clang++ -O2 -fprofile-instr-generate main.cpp -o main.instr > > > profile: main.instr > > ./main.instr > > > merge: default.profraw > > xcrun llvm-profdata me...
2018 Mar 23
2
IRMover asserts "mapping to a source type" when repeatedly linking - usage or LLVM bug?
...dule "b", clones it, links module "b'" into "main1'". This module has a *non-opaque* definition of "t". Thus "t", as referenced by "main1'", gets its type "t" completed (via linkDefinedTypeBodies()). 4) "main2" module gets created 5) inlining clones module "a". As types are global to a context, "t" now has a body, *and* the body appears to be from the source module (actually "b'"). "mapping to a source type" is the result. As far as I can tell, whic...
2020 Aug 15
2
Adding bitcode to an existing MachO object file
...Furthermore, I do need the final output to contain bitcode for all files used. So, my question is if it is possible to add the `__LLVM,__bitcode` section later to the MachO object file. I tried to archive the bitcode using `xar` and run `llvm-objcopy main.o --add-section=__LLVM,__bitcode=main.xar main2.o`, but it failed with an `unsupported load command`. This seems to be the case for all usages of `llvm-objcopy` with MachO files. Cheers and thanks -- Joseph -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/2...
2018 Mar 26
0
IRMover asserts "mapping to a source type" when repeatedly linking - usage or LLVM bug?
...;, clones it, links module "b'" into > "main1'". This module has a *non-opaque* definition of "t". Thus "t", > as referenced by "main1'", gets its type "t" completed (via > linkDefinedTypeBodies()). > 4) "main2" module gets created > 5) inlining clones module "a". As types are global to a context, "t" now > has a body, *and* the body appears to be from the source module > (actually "b'"). "mapping to a source type" is the result. When exactly...
2008 Dec 16
4
GlusterFS process take very many memory
...-host 192.168.34.2 option remote-subvolume vz-locks-perf option transport-timeout 60 end-volume #### # sv volume remvz02 type protocol/client option transport-type tcp/client option remote-host 192.168.8.40 option remote-subvolume vz-locks-perf option transport-timeout 60 end-volume #### # main2 volume remvz03 type protocol/client option transport-type tcp/client option remote-host 192.168.34.6 option remote-subvolume vz-locks-perf option transport-timeout 60 end-volume ################################# # AFR - 1 local, anover remoute # ################################# volume afr...
2012 Mar 22
3
calling java from R and using java time series double precision array
I haven't had time to try using R for over a year, but have a colleage who wants to. We work with time series and our current version of our calendar-time subroutines in java converts both directions between linear time and calendar. We have used calendar time since year 1965 starting out then with Fortran. Calendar time can be CnYrMoDa | CnYrMoDaHr | CnYrMoDaHrMn | CnYrMoDaHrMnSc |
2016 May 17
2
[cfe-dev] How to debug if LTO generate wrong code?
...> $clang -emit-llvm -c main.c -o main.bc >> $clang -emit-llvm -c a.c -o a.bc >> $llvm-ar cr main.lib main.bc >> $llvm-ar cr a.lib a.bc >> $clang -O0 -flto main.lib a.lib -o main0 >> $clang -O1 -flto main.lib a.lib -o main1 >> $clang -O2 -flto main.lib a.lib -o main2 >> >> $nm main0 >> … >> 00000000004005a0 t foo1 >> 0000000000400580 t foo2 >> 00000000004005e0 t foo3 >> 0000000000400530 t foo4 >> 0000000000400500 t frame_dummy >> … >> $ nm main1 >> … >> 0000000000400550 t foo1 >> 000...
2004 Apr 27
1
parsing to compare
...t context, or hangup Everytime I've tried (using gotoif as an example) I get a parsing error; or the program allows everything through. Think of the process as being like Disa, except you don't send the '#' I've been noodling around with code that is pretty much as follows: [main2] exten => _XXXXXXX9XXXXXXXXXX,1,SetVar(AUTHCODE=${EXTEN:0:7}) 'Calls coming in to '*' from outside are answered and sent here. The Caller recieves PlayInterruptibleTones(dial) 'and begins entering digits. The first seven are moved to the AUTHCODE variable for comparison. exten...
2010 May 31
0
Put two plots side by side
...lot(X,Y,data=A) + geom_jitter(position=position_jitter(width=.03)) + facet_grid(.~a) # Or with vp p=qplot(X, Y, data=A) + geom_jitter(position=position_jitter(width=.03)) ggsave(p, file='main.png') p1=qplot(X, Y, data=A) + geom_jitter(position=position_jitter(width=.3)) ggsave(p1, file='main2.png') vport <- function(x, y) viewport(layout.pos.row=x, layout.pos.col=y) grid.newpage() pushViewport(viewport(layout=grid.layout(1,2))) print(p, vp=vport(1,1)) print(p1, vp=vport(1,2)) ? Felipe D. Carrillo Supervisory Fishery Biologist Department of the Interior US Fish & Wildlife Serv...
2007 Sep 26
2
Help re speech software for the visually impaired
Hello Speex Development Team, We have purchased many T-2000 phones from VAVAA ( Gold Score International Holdings Limited of China) which use the Speex V208 software. Many of these phones are being used by Vision Impaired people some of whom are totally blind. Do you have a version of your software that we could load which produces speech outpiut that communicates to the user each key selected
2007 Feb 13
0
libswfdec/jpeg libswfdec/swfdec_image.c
...olor) (((color)>>0)&0xff) + + + +#include "jpeg.h" /* getfile */ void *getfile (char *path, int *n_bytes); -static void dump_pnm (unsigned char *ptr, int rowstride, int width, int height); +static void dump_pnm (uint32_t *ptr, int rowstride, int width, int height); int -main2 (int argc, char *argv[]) +main (int argc, char *argv[]) { unsigned char *data; int len; - JpegRGBDecoder *dec; - char *fn = "biglebowski.jpg"; - unsigned char *ptr; - int rowstride; + JpegDecoder *dec; + char *fn; + uint32_t *image; int width; int height; - dec = jp...