Displaying 20 results from an estimated 3000 matches similar to: "would you review the srcy programming language for llvm?"
2010 Apr 20
1
[PATCH] nv30/exa : cleanup from nv40 exa
This has two purposes :
- cleaner code
- reduce the diff between nv30 and nv40 exa for a possible nvfx_exa merge ?
The main differences seem to be that nv30 uses rect texture format (and does
not support repeat on that). Then there are some minor changes in TX_FORMAT
RT_FORMAT and TEX_FILTER usage. And NVAccelInitNVx0TCL look complete
different.
Tested with:
./rendercheck -t
2014 Apr 18
0
[PATCH] nv50: use 2d blit when src/dst have same number of samples
The 2D engine should be usable in more cases, but this fixes MS blits
between textures with the same MS settings. Otherwise a single sample is
selected to be the target texel value.
This allows other tests to work that render to a RB and then blit that
to a texture for input into a shader that uses sampler2DMS to verify it.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
2015 Aug 25
1
[Bug 91756] New: glean test vertProg1 segfaulting X server in exaHWCopyNtoN
https://bugs.freedesktop.org/show_bug.cgi?id=91756
Bug ID: 91756
Summary: glean test vertProg1 segfaulting X server in
exaHWCopyNtoN
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: All
Status: NEW
Severity: normal
Priority: medium
Component:
2016 Jul 07
0
[PATCH v3 4/8] mllib: Add some imperative list manipulation functions.
This adds imperative list manipulation functions inspired by Perl.
The functions are passed list refs which get updated in place.
This allows us to replace some awkward pure functional code like:
let xs = ys in
let xs = if foo then xs @ zs else xs in
with:
let xs = ref ys in
if foo then append xs zs;
---
mllib/common_utils.ml | 20 ++++++++++++++++++++
mllib/common_utils.mli | 36
2015 Mar 21
0
[PATCH] use defined method names where available
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
Would be nice if someone could glance at this... I suppose I could
also compare object files. Yeah, I should probably do that.
src/nv10_exa.c | 8 ++++----
src/nv30_exa.c | 20 ++++++++++----------
src/nv40_exa.c | 8 ++++----
src/nv50_accel.c | 6 +++---
src/nv50_accel.h | 1 +
src/nv50_exa.c
2009 Nov 04
1
[PATCH] nv10/exa: Spring-cleaning
* Kill the A8+A8 hack. Recent enough X servers (>=1.7) fall back to
ARGB glyphs for drivers not supporting A8 render targets.
* Kill all the global state. It doesn't matter a lot yet but it might
if we get multicard working at some point.
* Other random clean-ups with no functional changes.
Some numbers from x11perf -aa10text -aa24text -comppixwin10 -comppixwin500:
* Before, with A
2010 Nov 24
2
Reference Classes: how to clone/copy instances?
Dear list,
I don't know what's the correct term for this in the OOP context, but is it
possible to "clone"/copy an instance of a reference class (say 'a') so that
I get an *autonomous* second instance 'b'? Autonomous in the sense that
changes to 'a' do not affect 'b'.
I know that this is somewhat against the pass-by-reference paradigm, but the
2012 Sep 22
2
[LLVMdev] Typedef struct types
Hi All,
I was searching for, extracting information about 'typedefed struct types' from 'module'.
I have 'struct' typedefed in a .h file. I try to use this structure instance inside a function.
My .ll file rightly defines this type in the beginning so that it can be used later. (for example below)
%struct.DEBLOCK_UNIT = type { i8*, i8*, i8*, i8, i32, i32,
2012 Sep 22
0
[LLVMdev] Typedef struct types
Hi Pankaj, you may find include/llvm/TypeFinder.h useful.
Ciao, Duncan.
On 22/09/12 16:26, Pankaj Gode wrote:
> Hi All,
> I was searching for, extracting information about 'typedefed struct types' from
> 'module'.
> I have 'struct' typedefed in a .h file. I try to use this structure instance
> inside a function.
> My .ll file rightly defines this type in
2009 Jan 28
2
FLAC format: "autonomous" documentation
Hello,
I read through the specifications here:
http://flac.sourceforge.net/format.html
but the document is not "autonomous".
Instead, sections entitled "prediction" and "residual coding",
use external references, some of with are unavailable
(dead link) or in poor state.
What i mean here is that it is not possible to
write a decoder from scratch using only the spec
2009 Jan 28
0
FLAC format: "autonomous" documentation
Good point. But, gee, doesn't the source code serve as a provably-
complete documentation of the format? It's able to be compiled into
a program that can decode all files.
I'm only half serious. Source code is not the most concise way to
describe a format.
Brian Willoughby
Sound Consulting
On Jan 28, 2009, at 11:20, porte64 at free.fr wrote:
> I read through the
2016 Jul 13
2
Best practice to shutdown hosts which has not NUT via upssched
On Wed, 13 Jul 2016, Dmitri Stepanov wrote:
>>> ?? shutdown-all-hosts.sh contains:
>>> # Linux hosts
>>> HOSTLIST="sim iogate br"
>>> for host in $HOSTLIST
>>> do
>>> ...
>>> ???? ssh $host halt -p
>>> ...
>>> done
>>> ?? shutdown-all-hosts.sh works fine if it runned manually.
>>> ?? But
2019 Oct 05
2
CentOS 8 network-scripts
On Fri, 4 Oct 2019 at 18:11, Japheth Cleaver <cleaver at terabithia.org> wrote:
>
> On 10/4/2019 8:17 AM, Lamar Owen wrote:
> > On 10/4/19 10:40 AM, Valeri Galtsev wrote:
> >> My impression is younger generation doesn't value rules that
> >> programmers were following 2-3 decades ago. One of which is:
> >>
> >> Do not make any changes [in
2016 Jul 14
0
Best practice to shutdown hosts which has not NUT via upssched
Thank you Roger
?????, 13 ???? 2016, 15:22 +03:00 ?? Roger Price <roger at rogerprice.org>:
>
>On Wed, 13 Jul 2016, Dmitri Stepanov wrote:
>
>>>> ?? shutdown-all-hosts.sh contains:
>>>> # Linux hosts
>>>> HOSTLIST="sim iogate br"
>>>> for host in $HOSTLIST
>>>> do
>>>> ...
>>>> ???? ssh
2018 May 24
0
Style: getFoo() vs foo()
> On 24 May 2018, at 20:19, Sam McCall via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> The coding guidelines say:
> > Function names should be verb phrases (as they represent actions), and command-like function should be imperative. The name should be camel case, and start with a lower case letter (e.g. openFile() or isFoo()).
>
> This means that functions that
2018 May 24
1
Style: getFoo() vs foo()
On 24.05.2018 13:11, Dean Michael Berris via llvm-dev wrote:
>
>> On 24 May 2018, at 20:19, Sam McCall via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> The coding guidelines say:
>>> Function names should be verb phrases (as they represent actions), and command-like function should be imperative. The name should be camel case, and start with a lower case
2007 Oct 20
1
[PATCH] G72 doesn't need ExaCopy workaround
---
src/nv_exa.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/src/nv_exa.c b/src/nv_exa.c
index d88d85a..b403072 100644
--- a/src/nv_exa.c
+++ b/src/nv_exa.c
@@ -283,7 +283,6 @@ static void NVExaCopy(PixmapPtr pDstPixmap,
if ( ((abs(srcY - dstY)< 16)||(abs(srcX-dstX)<16)) &&
((((pNv->Chipset & 0xfff0) == CHIPSET_G70) ||
((pNv->Chipset
2012 Feb 26
0
CFP: The 9th Int. Conf. on Autonomic Computing (ICAC) 2012
CALL FOR PAPERS
The 9th International Conference on Autonomic Computing (ICAC 2012)
September 16-20, 2012. San Jose, CA, USA
http://icac2012.cs.fiu.edu/
-----------------------------------------------------------------
IMPORTANT DATES
Paper and Poster Submission: March 9, 2012, 11:59pm PST
Notification: May 18, 2012
Camera-ready Due: June 8, 2012
CFP: The 9th Int. Conf. on Autonomic Computing (ICAC) 2012 -- deadline extension to March 16th, 2012
2012 Mar 07
0
CFP: The 9th Int. Conf. on Autonomic Computing (ICAC) 2012 -- deadline extension to March 16th, 2012
CALL FOR PAPERS
The 9th International Conference on Autonomic Computing (ICAC 2012)
September 17-21, 2012. San Jose, CA, USA
http://icac2012.cs.fiu.edu/
-----------------------------------------------------------------
IMPORTANT DATES
Paper and Poster Submission: March 16, 2012, 11:59pm PST (EXTENDED)
Notification: May 18, 2012
Camera-ready Due: June 8, 2012
2012 Feb 26
0
CFP: The 9th Int. Conf. on Autonomic Computing (ICAC) 2012
CALL FOR PAPERS
The 9th International Conference on Autonomic Computing (ICAC 2012)
September 16-20, 2012. San Jose, CA, USA
http://icac2012.cs.fiu.edu/
-----------------------------------------------------------------
IMPORTANT DATES
Paper and Poster Submission: March 9, 2012, 11:59pm PST
Notification: May 18, 2012
Camera-ready Due: June 8, 2012