On Thu, Dec 25, 2014 at 4:52 PM, Jonathan Wakely wrote:
>
> On 25 December 2014 at 16:28, Olaf van der Spek wrote:
> > Hi,
> >
> > https://gcc.gnu.org/ links to https://gcc.gnu.org/gcc-5/ (GCC 5 C++14
> > language feature-complete [2014-12-23]) which doesn't exist.
>
> It should probably be https:
Is there any documentation for the GS464 x86 virtual machine instructions
publicly available?
http://dev.lemote.com/cgit/loongson-doc.git/tree/GS464-manual-chinese has
the sort of information I'm looking for (lists of supported instructions,
instruction encoding), but appears to say that docume
Any further thoughts on this issue?
On Sun, Jan 20, 2013 at 1:17 PM, Jonathan Adamczewski <
jonathan.adamczew...@gmail.com> wrote:
> Yanking and re-plugging the DP cable did work when I tried it. My
> recollection is that there have been times when it hasn't worked, though
>
upt for DP\n");
> +
> intel_dp_check_link_status(intel_dp);
> }
>
> Also please check whether yanking and re-plugging the DP cable will
> restore the display - it should.
> -Daniel
>
> On Sun, Jan 20, 2013 at 5:45 AM, Jonathan Adamczewski
> wrote:
> >
Hardware is a Dell XPS laptop, xorg log reports "Integrated Graphics
Chipset: Intel(R) Sandybridge Mobile (GT2)"
Running a custom configured 3.7.2 based kernel, xf86-video-intel-2.20.17.
I'm running the internal LVDS screen at 1080p and a Dell 2713HM monitor at
2560x1440 connected via display por
Hardware is a Dell XPS laptop, xorg log reports "Integrated Graphics
Chipset: Intel(R) Sandybridge Mobile (GT2)"
Running a custom configured 3.7.2 based kernel, xf86-video-intel-2.20.17.
I'm running the internal LVDS screen at 1080p and a Dell 2713HM monitor at
2560x1440 connected via display por
(spu in this context being the "synergistic processing units" on the Cell
BE CPU used in PlayStation 3 consoles and various blade servers from IBM)
I've noticed that gcc-4.7-spu (for example) exists in debian main, but only
for powerpc hosts. I'd like to request that a spu-elf toolchain usable fro
As I read through http://gcc.gnu.org/gcc-4.6/changes.html, it seems
to me that would be quite useful (and interesting) to be able to see
more information for each of the changes. Links to relevant
discussion, bugs, papers or patches/commits would make it far easier
to understand the substance o
On 25/06/10 06:39, Richard Guenther wrote:
> There are btw. some bugs wrt accounting of functions called once
> being inlined in 4.5 which were fixed on trunk which allow extra
> inlining.
>
Are these changes likely to make it onto the 4.5 branch and into (say)
4.5.1?
j.
https://bugs.kde.org/show_bug.cgi?id=169516
Jonathan Adamczewski changed:
What|Removed |Added
CC||jadam...@utas.edu.au
--
Configure
On 16/06/10 06:16, Marvin wrote:
> Anyway, I also think there should be a decision to remove all macros or macro-
> fy everything - given the statistics from grep, both seems to be the same
> amount of work while the latter gives you also some functionality.
>
What about something like GNU ld'
spu_tri.c:flush_spans() contained a big blob of conditional code
that would check DMA completion on almost every call to that
frequently called function, so my goal has been to move that check
up and out.
To achieve this, I have implemented double-buffering of DMA of color
and z tiles.
The use of
Brian Paul wrote:
>
> Looks good to me. I'll commit this (and your tri cull patch) shortly.
Thanks!
--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers & brand
In spu_tri.c:setup_sort_vertices() triangles are culled after the
vertices are sorted. This patch moves the check a little earlier
and performs the actual check a little faster through intrinsics and
a little trickery.
Reduced code size and less work is done before a triangle is deemed
OK to skip
I've attached a patch of something I've had sitting around for a
while - unrolling the inner loop of spu_render.c:cmd_render().
It was taking approximately 50 cycles to extract the vertex indices,
calculate the vertex_header pointers and call tri_draw() for each
three vertices - .
Unrolled, it ta
I've been considering some optimisations to the SPU render,
particularly pulling the clipping test out of spu_tri.c:
setup_sort_vertices() that is done for each tri for each tile and
instead doing the test once for each tri in spu_render.c:
cmd_render() and creating a mask.
In the process of tryin
Module: Mesa
Branch: gallium-0.2
Commit: f6d09531ff1588ea18048a842ab24338ae4bc5a7
URL:
http://cgit.freedesktop.org/mesa/mesa/commit/?id=f6d09531ff1588ea18048a842ab24338ae4bc5a7
Author: Jonathan Adamczewski
Date: Wed Jan 14 12:37:46 2009 +1100
cell: Specify constant as float for CEILF
Keith Whitwell wrote:
> On Fri, 2009-01-09 at 03:41 -0800, Jonathan Adamczewski wrote:
>> cell_render.{c,h} appear to be unused - the could be removed (and would thus
>> cause me less confusion).
>>
>> #include "cell_render.h" will need to be removed from cell
Module: Mesa
Branch: gallium-0.2
Commit: 068107b5ad0d3b6e2575cc712398d876f266bb90
URL:
http://cgit.freedesktop.org/mesa/mesa/commit/?id=068107b5ad0d3b6e2575cc712398d876f266bb90
Author: Jonathan Adamczewski
Date: Tue Jan 13 14:02:18 2009 +1100
cell: Add missing suffix to SHUFFLE macro
Fixed formatting of printf in bad opcode case.
Replace cell_batch{align,alloc)*() with cell_batch_alloc16(), allocating
multiples of 16 bytes that are 16 byte aligned.
Opcodes are stored in preferred slot of SPU machine word.
Various structures are explicitly padded to 16 byte multiples.
Added S
Replace cell_batch{align,alloc)*() with cell_batch_alloc16(), allocating
multiples of 16 bytes that are 16 byte aligned.
Opcodes are stored in preferred slot of SPU machine word.
Various structures are explicitly padded to 16 byte multiples.
Added STATIC_ASSERT().
---
src/gallium/drivers/cell/
Brian Paul wrote:
>
> It'd be interesting to know how big the batch buffers are with and
> without this change but overall this sounds good to me.
A side by side comparison shows a 5% increase in traffic with the 16-byte
aligned batch buffer.
That equates to an increase of approximately 90kB/s
Brian Paul wrote:
>
> It'd be interesting to know how big the batch buffers are with and
> without this change but overall this sounds good to me.
The attached graph shows the frequency of batch sizes for a 5 second run of
glxgears on one SPU with original and modified batch packing[1]. Numbers
Brian Paul wrote:
>
> It'd be interesting to know how big the batch buffers are with and
> without this change but overall this sounds good to me.
I'll see what I can come up with.
Is there a particular set of programs/methodology you use for testing
correctness/performance with the cell driver
to DMA times.
There are a couple of surplus changes in the attached patch, but overall it
should give the gist of what I'm doing. Please let me know if this kind of
modification is of interest and I'll clean it up.
Thanks.
jonathan.
From: Jonathan Adamczewski
Date: Mon, 12 Jan 20
cell_render.{c,h} appear to be unused - the could be removed (and would thus
cause me less confusion).
#include "cell_render.h" will need to be removed from cell_flush.h.
j.
--
Check out the new SourceForge.net Marketpl
Brian Paul wrote:
> Jonathan Adamczewski wrote:
>> Put setup.v{min,mid,max,provoke} into a union with qword vertex_headers.
>>
>> Rewrite vertex sorting to more efficiently handle the packed data items.
>>
>> Reduces spu_tri.o by ~128 bytes.
>
> That&
Put edge.{dx,dy} into a union with a vector and perform subtractions in
setup_sort_vertices() on vectors.
Reduces spu_tri.o by ~300 bytes.
---
src/gallium/drivers/cell/spu/spu_tri.c | 18 ++
1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/src/gallium/drivers/cell
Put setup.v{min,mid,max,provoke} into a union with qword vertex_headers.
Rewrite vertex sorting to more efficiently handle the packed data items.
Reduces spu_tri.o by ~128 bytes.
---
src/gallium/drivers/cell/spu/spu_tri.c | 97 ++--
1 files changed, 42 insertions(+)
Facilitates creation of shuffle patterns for use with spu_shuffle()
and si_shufb() intrinsics.
To be used by subsequent patches.
---
src/gallium/drivers/cell/spu/spu_shuffle.h | 186
1 files changed, 186 insertions(+), 0 deletions(-)
create mode 100644 src/gallium/
- Replace int setup.span{left,right}[2] with vec_uint4 setup.span.quad
- SIMDize calculate_mask() and inline into into flush_spans()
- Set setup.span.quad members using spu_shuffle() or spu_sel().
(Reduces spu_tri.o by ~116 bytes)
---
src/gallium/drivers/cell/spu/spu_tri.c | 94
Brian Paul wrote:
> URL:
> http://cgit.freedesktop.org/mesa/mesa/commit/?id=d917ad5dbd17f2399a5a3590fe6c06a64d683771
> Author: Brian Paul
> Date: Fri Jan 2 16:54:11 2009 -0700
>
> gallium: assorted state tracker fixes for > 8 texture samplers
>
From this commit I see the following r
What's the current state of the gallium-0.2 branch for Cell?
Building it, I've seen the following :
Making programs for linux-cell
make[2]: Entering directory `/home/jonathan/src/mesa.git/progs/demos'
powerpc-unknown-linux-gnu-gcc -I../../include -O3 -Wall -Winline
-Wmissing-prototypes -fPIC -m3
Jonathan Adamczewski wrote:
> Jonathan Adamczewski wrote:
>> Trying to 'make linux-cell' with gallium-0.1 head, I get the following
>> error :
>>
>> ...
>>
>> The particular structure triggering the error (struct draw_context.vs.queue
Jonathan Adamczewski wrote:
> Trying to 'make linux-cell' with gallium-0.1 head, I get the following
> error :
>
> gcc -c -I../../../../../src/mesa -I../../../../../src/gallium/include
> -I../../../../../src/gallium/auxiliary
> -I../../../../../src/gallium/drivers
Trying to 'make linux-cell' with gallium-0.1 head, I get the following
error :
gcc -c -I../../../../../src/mesa -I../../../../../src/gallium/include
-I../../../../../src/gallium/auxiliary
-I../../../../../src/gallium/drivers -g -Wall -Winline -fPIC -m32
-mabi=altivec -maltivec -I.
-I/opt/ibm/
NightStrike wrote:
What is gcc's irc server?
#gcc on irc.oftc.net
[EMAIL PROTECTED] wrote:
> Are there any comments about the name, semantics, or usefulness of this
> extension?
>
Sounds very useful for SPU code. I look forward to trying it out.
Toying with the idea, the following seems like a potentially useful C++
form of the proposed extension :
struct
Michael Meissner wrote:
One of the things that I've been interested in is adding support to GCC to
compile individual functions with specific target options. I first presented a
draft at the Google mini-summit, and then another draft at the GCC developer
summit last July.
...
The proposal is a
Doug Goldstein wrote:
>
> That's what this commits review list feels like.
>
Nearly every suggestion (from Donnie and others) has been over some
issue that relates directly to either correctness or maintainability.
It doesn't matter if you can "rattle off capabilities to a millimeter" -
if th
Jonathan Wakely wrote:
I believe Andrew's right and the strcpy case is valid, but you do have
a point. I think this should be rejected:
struct A { int i; };
struct B { A get() { return A(); } };
int main ()
{
B b;
b.get().i = 0;
// int& error = b.get().i;
}
What about somethin
William L. Thomson Jr. wrote:
Not sure if bumping the ati-drivers package will address that. But I
could see that potentially being a problem for 2.6.22 stabilization.
ati-drivers is a couple of releases behind in the tree - the latest
versions have been fixed to work with kernel 2.6.22. C
Dawid Węgliński wrote:
That's why we do have ... --changelog switch to let users
know about changes.
Which is of no use when (as in this case) there is no associated version
bump.
j.
(also, when every new version is a new slot - kernels and webapps)
--
[EMAIL PROTECTED] mailing list
Jeff Walter wrote:
I can understand traceroute being setuid, but why put it in /usr/sbin
so only root sees it?
Huh? Just add /usr/sbin to your PATH.
$ export PATH=$PATH:/usr/sbin
$ traceroute
Version 1.4a12
Usage: traceroute [-dFInrvx] [-g gateway] [-i iface] [-f first_ttl]
[-m max_
Josh Saddler wrote:
Just because we have Gentoo devs who are also Gnome upstream doesn't make their
Gnome-related packages that happen to be in our tree official Gentoo
projects
A Gentoo developer that is also a Gnome developer that wants to mentor a
project to better integrate Gentoo and Gnom
[EMAIL PROTECTED] wrote:
WARN: unpack
Sorry, but mozilla-sunbird-bin does not support the en_GB LINGUA
Why is this a warning? (and it's a warning in plenty of ebuilds). I have
LINGUAS defined in /etc/make.conf - warning about an unsupported LINGUA
is like warning about an unsupported USE f
George Prowse wrote:
Ciaran McCreesh wrote:
On Thu, 15 Mar 2007 01:19:52 + George Prowse
<[EMAIL PROTECTED]> wrote:
What on earth is going to be a "major visible improvement" to a
command line based package manager that any average Gentoo user is
going to realise? The average user probabl
Christian Convey wrote:
But the symbol really does appear to be in the archive:
[EMAIL PROTECTED]:~$ nm --demangle
/home/cjc/csc583-svn/uriVisionLib/trunk/Development/Source/C++/liburiVision.a
| grep "uriVideoSources::ImageReader_gen::getFrame"
U uriVideoSources::ImageReader_gen::getF
Christian Convey wrote:
In function `uriVideoSources::ImageReader::getFrame(bool,
uriBase::RasterImage*)':
ImageReader.cpp:(.text+0x90): undefined reference to
If the missing reference is to
`uriVideoSources::ImageReader_gen::getFrame_(bool,
uriBase::RasterImage*)'
Why do you grep for ou
Robin H. Johnson wrote:
don't take XMMS away from those of us already using it without any issues.
It can disappear from portage without affecting your ability to keep
using it.
j.
--
gentoo-dev@gentoo.org mailing list
Molle Bestefich wrote:
> Hi
>
> Follow-up question to the backup thingy.
>
> Is there an easy way to share Portage's database between multiple
> virtual machines?
>
> Optimally, I would emerge --sync and the results would land in a
> filesystem that I'd share between VMs, so I don't have to do emer
[EMAIL PROTECTED] wrote:
duh, read the rest of the post :roll:
My apologies - your mailer appears to have munged the quoting in that
post and I misinterpreted.
j.
[EMAIL PROTECTED] wrote:
I have been unable to reproduce this bug on Gentoo which also has the
same permissions on /dev/hda .
/dev/hda may be root:disk, but if you've setup your machine based on the
standard Gentoo install handbook, your regular user account won't be a
member of the disk gr
I've been playing around installing logcheck on a gentoo system, and I
needed to change permissions on one other dir - /var/lib/logcheck - in
order to get things working.
If you are at all interested, there is some discussion regarding
installation of logcheck on gentoo here :
https://bugs.ge
Stefan Dösinger wrote:
I've updated my fglrx driver yesterday
From which version? (and to which version? Latest is 8.19.10)
I've updated from 8.18.8 to 8.19.10
fbo was already present in 8.18.8 (the functionality and the -fbo flag
for fgl_glxgears) so I would say that it's unl
Vladimir Dergachev wrote:
On Thu, 7 Oct 2004, Jonathan Adamczewski wrote:
Hi,
After coming across r300.sf.net, I have the following configuration
up and running :
- 9700 pro aiw
- xorg-6.8.0 (patched as per r300.sf.net)
- linux kernel 2.6.9-rc3 (-rc2 patches seem to apply cleanly)
I obtained
Jan Kreuzer wrote:
Jonathan Adamczewski wrote:
Hi,
After coming across r300.sf.net, I have the following configuration
up and running :
- 9700 pro aiw
- xorg-6.8.0 (patched as per r300.sf.net)
- linux kernel 2.6.9-rc3 (-rc2 patches seem to apply cleanly)
I obtained r300-demo from cvs, but cannot
Is it possible to run my 9700pro in dual head mode with the radeon driver?
Thanks.
jonathan.
---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
You
Hi,
After coming across r300.sf.net, I have the following configuration up
and running :
- 9700 pro aiw
- xorg-6.8.0 (patched as per r300.sf.net)
- linux kernel 2.6.9-rc3 (-rc2 patches seem to apply cleanly)
I obtained r300-demo from cvs, but cannot achieve anything but high cpu
utilisation with
>
> | OK, fine. The question remains: is this a legal construct, or not?
>
> The constructs you sent were all ill-formed. See 14.6/5 of the C++
> definition text.
Or see C.13.5 in The C++ Programming Language 3rd Ed. (pp. 856-858)
j.
--
Put your leader at the back. This means there is les
ng
flood protection being a little too over cautious. I recall having the
same problem while using Napster on my Bro's pc (while masquerading with
MiamiDx) so I don't think anyone's trying to do anything to you
specifically.
Jonathan Adamczewski.
--
To unsubscribe send "unsu
Geez, grow up.
On 8 Apr 2000, Gabriele Favrin wrote:
> Just a beta bug, one with you can leave, as you must leave without a doc and
> without complaining, because if you complain the programmer tell you that your
> statements are false and many fans of him start saying that if you complain he
>
, etc) Can someone explain the process of why this happens, and if it
would be totally unwise to restrict access to inetd.
Any thoughts on the topic would be appreciated
Jonathan Adamczewski.
--
To unsubscribe send "unsubscribe miami-talk-ml" to
"[EMAIL PROTECTED]". For h
Someone mentioned a little while back about mni drivers for pcmcia cards
(especially with respect to the fact that they weren't going to happen) I
don't recall seeing any more detail about this (ie why) and was
curious. Could someone tell me why this might be (or tell me I'm wrong
;). If it's a
I've got samba installed on my amiga on a small home network which has
been going great recently. Just curious if there's any way I can send
winpopup messages to the win 95 / win 98 boxes. It hasn't worked so far
am I missing something or, as far as I can tell, it's not possible without
winnt?
Hmm, oops. Got it the wrong way round.
To see the pc from the amiga, you could do what I do - use smb-handler.
Have a look at ...
http://www.kampsax.dtu.dk/~rask/Samba/download/SMB-Handler0_12.lha
(My goodness I love www.google.com :)
Not to hard to setup and install. And small. It's not perf
Have a look at http://www.birrabrothers.com/tiger/data/samba/index.htm
It's what I used to get my network setup and there's no problems at all (of
course YMMV)
Jonathan.
|
| On 16 Feb 2000, David Oakes wrote:
|
| > What I'd like to know is what, exactly, I have to do in order to see
| > the l
| On 12-Feb-00, Johnathon Adamczewski wrote:
| > Greetings all,
| >
| > My problems are resolved !! :) I rekeyed Miami this morning before a
| > meeting, wedding anniversary and engagement party (all separate) and
| > just came home, registered Miami eluxe and now all three computers
| > on my h
| On Fri, Feb 11, 2000 at 09:32:54AM +1100, Jonathan Adamczewski wrote:
| > I've been a registered user of Miami for about 6 months with no problems
| > (till now of course). I had a hard drive crash and lost my keyfiles.
I'm
| > guessing this is not too uncommon (or hopi
| > I've been a registered user of Miami for about 6 months with no problems
| > (till now of course). I had a hard drive crash and lost my keyfiles.
I'm
| > guessing this is not too uncommon (or hoping that I'm not the only
person
| > stupid enough not to back em up). Just wondering how likel
7;ve mailed Holger a couple of times in the
last week with no response. If anyone can offer some ideas as where to go
from here, I'll be eternally grateful.
Jonathan Adamczewski.
--
To unsubscribe send "unsubscribe miami-talk-ml" to
"[EMAIL PROTECTED]". For help on list commands send "help" to
"[EMAIL PROTECTED]".
71 matches
Mail list logo