search for: cull

Displaying 20 results from an estimated 141 matches for "cull".

Did you mean: call
2015 May 25
4
[RFC PATCH 00/11] Implement ARB_cull_distance
...5 at 9:40 AM, Tobias Klausmann <tobias.johannes.klausmann at mni.thm.de> wrote: > > On 25.05.2015 07:17, Dave Airlie wrote: >> >> On 25 May 2015 at 08:11, Marek Olšák <maraeo at gmail.com> wrote: >>> >>> It's the same on Radeon. There are 2x ClipOrCullDistance output >>> vectors and a mask saying it should clip or cull or do nothing. >>> >>> Marek >>> >> My thinking was gallium should have a single semantic and a mask in >> the shader definition maybe. >> >> though it doesn't solve t...
2015 May 25
2
[RFC PATCH 00/11] Implement ARB_cull_distance
On 25 May 2015 at 08:11, Marek Olšák <maraeo at gmail.com> wrote: > It's the same on Radeon. There are 2x ClipOrCullDistance output > vectors and a mask saying it should clip or cull or do nothing. > > Marek > My thinking was gallium should have a single semantic and a mask in the shader definition maybe. though it doesn't solve the does nvidia do the right thing with cull[0] and clip[0], and wha...
2015 May 27
2
[RFC PATCH 00/11] Implement ARB_cull_distance
On 27.05.2015 18:28, Marek Olšák wrote: > Another thing to consider is linking shaders that occur before the > rasterizer (e.g. any two shaders from VS->TCS->TES->GS). The maximum > number of written distances is still 8, but what happens if VS writes > 1x clip and 7x cull and GS reads 8x clip and no cull? i think this should be rejected anyway (in the glsl?!), constraining vs output to be the same as gs input where the last definition is the valid one.... > In this case > it's basically a generic varying. How is linking separate shaders > supposed...
2011 Dec 08
1
partial duplicates of dataframe rows, indexing and removal
...B A A 7 bob C A C 8 bob C C A 9 bob B C E 10 bob C B C 11 joe C B A 12 joe A B E 13 joe C C B 14 joe C A D 15 joe A C C I am trying to identify and remove the rows of df that are duplicates in df[,1:3]. culled.df<-unique(x[,1:3]) >culled.df id pet1 pet2 1 amy A A 2 amy C C 3 amy C A 5 amy A B 6 bob A B 7 bob C C 8 bob B C 10 bob B A 11 joe B B 13 joe B C 14 joe B A This is where I'm hung up. I've been trying mat...
2002 Aug 07
0
Culling dead smbd's?
I seem to be having a problem whereby every time a user fails to authenticate with Samba, smbd stops responding to that particular client and has to be restarted. Apart from 'what on earth's going wrong with my authentication', there are two things I'd like to know: firstly, is it the main smbd/all smbd's which lock, and secondly, if not is there any way (on SuSE Linux) to
2007 Jul 11
0
can "template homedir" build paths based on user groups culled from getent groups?
Hi all, I am in the process of moving our schools student file server to Samba from Win2k3 and I want to replicate the setup we currently have which puts students home directories under their graduation year like this: \students\2008\username Under AD students are in OU's based on grad year. We're using winbind (with idmap_rid tdb) to pull users and groups from AD, 'getent
2014 Nov 25
0
[PATCH RFC v2 02/12] virtio: cull virtio_bus_set_vdev_features
The only user of this function was virtio-ccw, and it should use virtio_set_features() like everybody else: We need to make sure that bad features are masked out properly, which this function did not do. Reviewed-by: Thomas Huth <thuth at linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck at de.ibm.com> --- hw/s390x/virtio-ccw.c | 3 +--
2014 Dec 02
0
[PATCH RFC v5 02/19] virtio: cull virtio_bus_set_vdev_features
The only user of this function was virtio-ccw, and it should use virtio_set_features() like everybody else: We need to make sure that bad features are masked out properly, which this function did not do. Reviewed-by: Thomas Huth <thuth at linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck at de.ibm.com> --- hw/s390x/virtio-ccw.c | 3 +--
2014 Dec 11
0
[PATCH RFC v6 02/20] virtio: cull virtio_bus_set_vdev_features
The only user of this function was virtio-ccw, and it should use virtio_set_features() like everybody else: We need to make sure that bad features are masked out properly, which this function did not do. Reviewed-by: Thomas Huth <thuth at linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck at de.ibm.com> --- hw/s390x/virtio-ccw.c | 3 +--
2014 Dec 11
0
[PATCH RFC v6 02/20] virtio: cull virtio_bus_set_vdev_features
The only user of this function was virtio-ccw, and it should use virtio_set_features() like everybody else: We need to make sure that bad features are masked out properly, which this function did not do. Reviewed-by: Thomas Huth <thuth at linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck at de.ibm.com> --- hw/s390x/virtio-ccw.c | 3 +--
1998 Jun 25
1
all.equal
...return("attributes differ.") else if(!is.null(attributes(obj1)) && any(unlist(attributes(obj1)) != unlist(attributes(obj2)))) return("attributes differ.") cull.numeric <- function(obj, r=NULL) { if (is.null(obj) | (length(obj) == 0)) return(r) else if (is.numeric(obj)) return(c(r,obj)) else if (is.list(obj)) return( c(cull.numeric(obj[[1]], r), cull.numeric(obj[-1])) ) else return(r) } z1 <- cull.numeric(...
2015 May 24
2
[RFC PATCH 00/11] Implement ARB_cull_distance
...ias.johannes.klausmann at mni.thm.de> wrote: >> >> On 24.05.2015 20:25, Ilia Mirkin wrote: >>> I'm having a bit of trouble tracing through this. What happens if I >>> have a shader that just does: >>> >>> gl_ClipDistance[0] = 1; >>> gl_CullDistance[0] = 1; >>> >>> what does the resulting TGSI look like? (Assuming that clip plane 0 is >>> enabled.) What about the generated nvc0 code (for the vertex shader)? >> >> (hack up a patch for this, run it without DRI_PRIME=1, see i pass and forget >>...
1998 May 21
1
all.equal - cut three
...return("attributes differ.") else if(!is.null(attributes(obj1)) && any(unlist(attributes(obj1)) != unlist(attributes(obj2)))) return("attributes differ.") cull.numeric <- function(obj, r=NULL) { if (is.null(obj) | (length(obj) == 0)) return(r) else if (is.numeric(obj)) return(c(r,obj)) else if (is.list(obj)) return( c(cull.numeric(obj[[1]], r), cull.numeric(obj[-1])) ) else return(r) } z1 <- cull.numeric(...
2005 Jul 24
2
indexing a vector starting from 0
Hi All, I would like to ask if it possible to start indexing a vector from 0: x = 1:10 y = c(0,0,3,4,5,6,0,8,9,10) I need to use y as an index to extract the values of x, BUT I cannot cull/transform the 0s. What I would like is to start counting the elements of x 0:9 rather than 1:10. Would this be at all possible? Regards, Federico Calboli -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St. Mary's Campus Norfolk Place, London W2 1PG...
2001 Mar 11
2
Winamp output plugin build problem
Hello vorbis-dev, I'm trying to build the Winamp output plug-in from some source I culled from the mailing list archives. The compile is failing since I'm missing a structure call info_A. Can anyone lighten my darkness? Best regards, Andy --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this lis...
2015 May 24
2
[RFC PATCH 00/11] Implement ARB_cull_distance
On 24.05.2015 20:25, Ilia Mirkin wrote: > I'm having a bit of trouble tracing through this. What happens if I > have a shader that just does: > > gl_ClipDistance[0] = 1; > gl_CullDistance[0] = 1; > > what does the resulting TGSI look like? (Assuming that clip plane 0 is > enabled.) What about the generated nvc0 code (for the vertex shader)? (hack up a patch for this, run it without DRI_PRIME=1, see i pass and forget to check it again) yeah those are equal, sorry f...
2005 Nov 13
3
OggPCM format description, rev 3
...ecoding > be sent in the header. Most of the other ADPCM have blocks sizes > that need to be sent. All in all this is a huge PITA. In comparison > to FLAC, Speex and Vorbis, APDCM formats have little to offer. No objection here. I'd like to see someone other than myself go through and cull the list of formats into whatever a practical subset is. As long as it does 16 bit signed little endian interleaved, I'll be happy. > I still think that assigning meaning to bits within the format field > is a mistake. Specifying bits like this could only be useful if > you expect the...
2011 Jun 04
0
[LLVMdev] Compiling whole programs to bitcode
...automated way > to do it (in the sense that a linker provides a more automated way to > do a similar job of building an executable)? You can link your bitcode together with glibc's bitcode by using the llvm-link utility. Then you can run DCE over the bitcode with "opt -dce" and cull all the functions you don't need. But why are you trying to do this at all? Chip
2020 Jan 10
0
Re: [PATCH Fedora libguestfs] Don't depend on libvirt-daemon-kvm monolith.
...ter > +Recommends: libvirt-daemon-driver-storage-iscsi > +Recommends: libvirt-daemon-driver-storage-logical > +Recommends: libvirt-daemon-driver-storage-rbd > +Recommends: libvirt-daemon-driver-storage-scsi > Requires: libvirt-daemon-qemu >= 0.10.2-3 You need to cull this last existing line too > -%endif > Recommends: libvirt-daemon-config-network > Requires: selinux-policy >= 3.11.1-63 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> with the line culled Regards, Daniel -- |: https://berrange.com -o- https://www.fl...
2020 May 07
2
What's a Reasonable Inbox Size?
Thanks for your response, So, how do those rotation scripts work in concept? People are still able to access their old inboxes, but it just moves them to an archived state? On 5/7/2020 9:40 AM, Kevin A. McGrail wrote: > On 5/7/2020 11:39 AM, Asai wrote: >> What's a reasonable inbox size?? Is 20+ GB reasonable and nothing to >> worry about? >> > Great question. >