Displaying 20 results from an estimated 93 matches for "dcl".
Did you mean:
dc
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...ness_pixelformat(int bpp);
+PixelFormat qemu_default_pixelformat(int bpp);
+
+static inline int is_buffer_shared(DisplaySurface *surface)
+{
+ return (!(surface->flags & QEMU_ALLOCATED_FLAG));
+}
+
+static inline void register_displaychangelistener(DisplayState *ds, DisplayChangeListener *dcl)
+{
+ dcl->next = ds->listeners;
+ ds->listeners = dcl;
+}
static inline void dpy_update(DisplayState *s, int x, int y, int w, int h)
{
- s->dpy_update(s, x, y, w, h);
+ struct DisplayChangeListener *dcl = s->listeners;
+ while (dcl != NULL) {
+ dcl->dpy_...
2007 Nov 28
1
ifelse function
Hi there,
I need help with IFELSE function.
The column g of my dataset pth, pth$g consists of "aa", "ao", "dcl", "iy",
"sh".
The last few values of pth$g looks like:
[4496] sh ao ao sh iy dcl dcl aa iy iy aa sh ao ao
Levels: aa ao dcl iy sh
I want to convert these values into 1,2,3,4,5. I tried to use a loop and I
found the following statement did not work.
> pth$g[1...
2016 Feb 22
2
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...test_input_global() to work again, when that is working I should be
>> able to adjust my llvm work (and if necessary clover) to start to
>> work again.
>>
>> Currently the test_input_global() test uses the following bit of
>> TGSI code:
>>
>> COMP
>> DCL SV[0], THREAD_ID[0]
>> DCL TEMP[0], LOCAL
>> DCL TEMP[1], LOCAL
>> IMM UINT32 { 8, 0, 0, 0 }
>>
>> BGNSUB\n"
>> UMUL TEMP[0], SV[0], IMM[0]
>> LOAD TEMP[1].xy, RINPUT, TEMP[0]
>> LOAD TEMP[0].x, RGLOBAL, TEMP[1].yyyy
&...
2019 Apr 30
6
Disk space and RAM requirements in docs
...r/home/petr/src/llvm/trunk/llvm/tools/clang/test/Modules/Inputs
592K build/tools/clang/test/FixIt
588K build/tools/clang/test/FixIt/Output
584K build/tools/clang/test/PCH/Output/pch-dir.c.tmp.h.gch
576K build/tools/clang/test/Index/Output/annotate-comments-objc.m.tmp
564K build/tools/clang/test/CXX/dcl.dcl
552K build/tools/polly/lib/External/CMakeFiles/polly-isl-test.dir
552K build/tools/clang/test/SemaObjCXX
548K build/tools/polly/lib/External/CMakeFiles/polly-isl-test.dir/isl
548K build/tools/clang/test/SemaObjCXX/Output
544K build/tools/clang/test/CodeGenOpenCL
540K build/tools/clang/test/Code...
2016 Feb 22
4
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...d be
>>>> able to adjust my llvm work (and if necessary clover) to start to
>>>> work again.
>>>>
>>>> Currently the test_input_global() test uses the following bit of
>>>> TGSI code:
>>>>
>>>> COMP
>>>> DCL SV[0], THREAD_ID[0]
>>>> DCL TEMP[0], LOCAL
>>>> DCL TEMP[1], LOCAL
>>>> IMM UINT32 { 8, 0, 0, 0 }
>>>>
>>>> BGNSUB\n"
>>>> UMUL TEMP[0], SV[0], IMM[0]
>>>> LOAD TEMP[1].xy, RINPUT, TEMP[0]...
2013 Oct 04
1
[Bug 70130] New: unable to compile fragment shader program
...sa
I have old geforce go 7900 inspiron e1705 laptop. On which I have archlinux
with nouveau (9.2.0-2)& mesa drivers.
I get the below error when i use the debug build
Error: failed to compile this fragment program:
FRAG
PROPERTY FS_COORD_ORIGIN LOWER_LEFT
PROPERTY FS_COLOR0_WRITES_ALL_CBUFS 1
DCL IN[0], POSITION, LINEAR
DCL IN[1], TEXCOORD[0], PERSPECTIVE
DCL IN[2], TEXCOORD[1], PERSPECTIVE
DCL IN[3], TEXCOORD[2], PERSPECTIVE
DCL IN[4], TEXCOORD[3], PERSPECTIVE
DCL IN[5], GENERIC[0], PERSPECTIVE
DCL OUT[0], COLOR
DCL SAMP[0]
DCL SAMP[1]
DCL SAMP[2]
DCL SAMP[3]
DCL SAMP[4]
DCL SAMP[5]
DCL CO...
2013 Dec 11
2
[LLVMdev] Switching to the new MingW ABI
...ang :: SemaCXX/const-cast.cpp
> Clang :: SemaCXX/cstyle-cast.cpp
> Clang :: SemaCXX/functional-cast.cpp
> Clang :: SemaCXX/reinterpret-cast.cpp
> Clang :: SemaCXX/static-cast.cpp
> Printing thiscall attribute on member function pointer type.
>
> Clang :: CXX/dcl.dcl/dcl.spec/dcl.constexpr/p1.cpp
> Clang :: SemaTemplate/explicit-instantiation.cpp
> Clang :: SemaTemplate/instantiate-method.cpp
> Clang :: SemaTemplate/temp_arg_nontype.cpp
> Printing thiscall attribute for function type after explicit
> specialization function match...
2013 Dec 11
0
[LLVMdev] Switching to the new MingW ABI
...-of-overloaded-function.cpp
Clang :: SemaCXX/const-cast.cpp
Clang :: SemaCXX/cstyle-cast.cpp
Clang :: SemaCXX/functional-cast.cpp
Clang :: SemaCXX/reinterpret-cast.cpp
Clang :: SemaCXX/static-cast.cpp
Printing thiscall attribute on member function pointer type.
Clang :: CXX/dcl.dcl/dcl.spec/dcl.constexpr/p1.cpp
Clang :: SemaTemplate/explicit-instantiation.cpp
Clang :: SemaTemplate/instantiate-method.cpp
Clang :: SemaTemplate/temp_arg_nontype.cpp
Printing thiscall attribute for function type after explicit
specialization function match failure.
- Hans
2016 Feb 22
2
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...t:
src/gallium/tests/trivial/compute.c and then the test with mask 8,
test_input_global() to work again, when that is working I should be
able to adjust my llvm work (and if necessary clover) to start to
work again.
Currently the test_input_global() test uses the following bit of
TGSI code:
COMP
DCL SV[0], THREAD_ID[0]
DCL TEMP[0], LOCAL
DCL TEMP[1], LOCAL
IMM UINT32 { 8, 0, 0, 0 }
BGNSUB\n"
UMUL TEMP[0], SV[0], IMM[0]
LOAD TEMP[1].xy, RINPUT, TEMP[0]
LOAD TEMP[0].x, RGLOBAL, TEMP[1].yyyy
UADD TEMP[1].x, TEMP[0], -TEMP[1]
STORE RGLOBAL.x, TEMP[...
2016 Feb 22
0
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...o adjust my llvm work (and if necessary clover) to start to
>>>>> work again.
>>>>>
>>>>> Currently the test_input_global() test uses the following bit of
>>>>> TGSI code:
>>>>>
>>>>> COMP
>>>>> DCL SV[0], THREAD_ID[0]
>>>>> DCL TEMP[0], LOCAL
>>>>> DCL TEMP[1], LOCAL
>>>>> IMM UINT32 { 8, 0, 0, 0 }
>>>>>
>>>>> BGNSUB\n"
>>>>> UMUL TEMP[0], SV[0], IMM[0]
>>>>> LOAD...
2016 Feb 22
0
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...o adjust my llvm work (and if necessary clover) to start to
>>>>> work again.
>>>>>
>>>>> Currently the test_input_global() test uses the following bit of
>>>>> TGSI code:
>>>>>
>>>>> COMP
>>>>> DCL SV[0], THREAD_ID[0]
>>>>> DCL TEMP[0], LOCAL
>>>>> DCL TEMP[1], LOCAL
>>>>> IMM UINT32 { 8, 0, 0, 0 }
>>>>>
>>>>> BGNSUB\n"
>>>>> UMUL TEMP[0], SV[0], IMM[0]
>>>>> LOAD...
2016 Feb 22
0
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...in, when that is working I should be
>>> able to adjust my llvm work (and if necessary clover) to start to
>>> work again.
>>>
>>> Currently the test_input_global() test uses the following bit of
>>> TGSI code:
>>>
>>> COMP
>>> DCL SV[0], THREAD_ID[0]
>>> DCL TEMP[0], LOCAL
>>> DCL TEMP[1], LOCAL
>>> IMM UINT32 { 8, 0, 0, 0 }
>>>
>>> BGNSUB\n"
>>> UMUL TEMP[0], SV[0], IMM[0]
>>> LOAD TEMP[1].xy, RINPUT, TEMP[0]
>>> LOAD TE...
2013 Dec 11
0
[LLVMdev] Switching to the new MingW ABI
...p
>> Clang :: SemaCXX/cstyle-cast.cpp
>> Clang :: SemaCXX/functional-cast.cpp
>> Clang :: SemaCXX/reinterpret-cast.cpp
>> Clang :: SemaCXX/static-cast.cpp
>> Printing thiscall attribute on member function pointer type.
>>
>> Clang :: CXX/dcl.dcl/dcl.spec/dcl.constexpr/p1.cpp
>> Clang :: SemaTemplate/explicit-instantiation.cpp
>> Clang :: SemaTemplate/instantiate-method.cpp
>> Clang :: SemaTemplate/temp_arg_nontype.cpp
>> Printing thiscall attribute for function type after explicit
>> specializa...
2016 Jun 03
13
[Bug 96355] New: Performance: extra&costly SSBO validation even when SSBO aren't used
https://bugs.freedesktop.org/show_bug.cgi?id=96355
Bug ID: 96355
Summary: Performance: extra&costly SSBO validation even when
SSBO aren't used
Product: Mesa
Version: git
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component:
2013 Dec 10
2
[LLVMdev] Switching to the new MingW ABI
On Tue, Dec 10, 2013 at 11:58 AM, Hans Wennborg <hans at chromium.org> wrote:
> It would be nice if we could make the TypePrinter not print the
> calling convention if it's the default one for the ABI, but
> TypePrinter doesn't have a lot of context.. no Sema, no ASTContext :/
>
Does this patch fix any failures for you? It doesn't fix that test case,
unfortunately.
2010 Aug 06
3
Remote nautilus, X display forwarding problem
I need to open a Nautilus window on a headless server, but no matter
what I try it complains about the display:
?dcl:~$ xhost + localhost
localhost being added to access control list
?dcl:~$ ssh -X user at ip.address
[user at CentOS-55-32-minimal ~]$ export DISPLAY=localhost:0.0
[user at CentOS-55-32-minimal ~]$ nautilus --display=0:0
cannot open display: 0:0
Run 'nautilus --help' to see a full list of av...
2015 May 25
4
[RFC PATCH 00/11] Implement ARB_cull_distance
...gl_ClipDistance[5] = 1;
gl_CullDistance[0] = 1;
Then it would decide that there are 6 clip distances (or if there's an
explicit out float gl_ClipDistance[n], then use that), and 1 cull
distance. In the TGSI, I'm thinking this might look approximately like
PROPERTY CULL_MASK (1<<6)
DCL OUT[0], CLIPDIST[0]
DCL OUT[1], CLIPDIST[1]
MOV OUT[1].y, 1 (clip distance[5])
MOV OUT[1].z, 1 (cull distance[0])
Then basically you'd have
(rast->clip_enable & shader->actual_clip_writes_mask) | cull_mask =
the enabled distances
cull_mask = cull mask
This would work *very* well fo...
2016 Feb 22
0
Dealing with opencl kernel parameters in nouveau now that RES support is gone
...then the test with mask 8,
> test_input_global() to work again, when that is working I should be
> able to adjust my llvm work (and if necessary clover) to start to
> work again.
>
> Currently the test_input_global() test uses the following bit of
> TGSI code:
>
> COMP
> DCL SV[0], THREAD_ID[0]
> DCL TEMP[0], LOCAL
> DCL TEMP[1], LOCAL
> IMM UINT32 { 8, 0, 0, 0 }
>
> BGNSUB\n"
> UMUL TEMP[0], SV[0], IMM[0]
> LOAD TEMP[1].xy, RINPUT, TEMP[0]
> LOAD TEMP[0].x, RGLOBAL, TEMP[1].yyyy
> UADD TEMP[1].x, TEMP...
2016 Oct 02
2
[PATCH] nv50/ir: Propagate third immediate src when folding OP_MAD
...(8)
3: mov f32 $r3 $r1 (8)
4: mov u32 $r1 $r2 (8)
5: export b128 # o[0x0] $r0q (8)
With patch:
0: ld u32 $r2 c0[0x0] (8)
1: add ftz f32 $r0 $r2 1.000000 (8)
2: mov f32 $r3 $r1 (8)
3: mov u32 $r1 $r2 (8)
4: export b128 # o[0x0] $r0q (8)
[1]:
VERT
PROPERTY NEXT_SHADER FRAG
DCL OUT[0], GENERIC[0]
DCL CONST[0]
DCL TEMP[0..1], LOCAL
IMM[0] FLT32 { 0.0078, -1.0000, 0.0000, 0.5000}
IMM[1] FLT32 { 1.0000, 0.0000, 65535.0000, 0.0100}
0: MOV TEMP[0].xyz, CONST[0].xxxx
39: MAD TEMP[1], CONST[20].xxxx, IMM[1].yyyy, IMM[1].xyyy
41: ADD TEMP[1], TEMP[...
2016 Jan 11
4
Some llvm questions (for tgsi backend)
...EMP1z, [0]
UADDs TEMP1x, TEMP1z, TEMP1x
LOADgis TEMP1x, [TEMP1x]
INEGs TEMP1x, TEMP1x
LOADgis TEMP1z, [TEMP1y]
UADDs TEMP1x, TEMP1x, TEMP1z
STOREgis [TEMP1y], TEMP1x
RET
ENDSUB
Working tgsi for this would look like this:
COMP
DCL SV[0], THREAD_ID[0]
DCL TEMP[0], LOCAL
DCL TEMP[1], LOCAL
IMM UINT32 { 0, 0, 0, 0 }
IMM UINT32 { 4, 0, 0, 0 }
IMM UINT32 { 128, 0, 0, 0 }
BGNSUB
LOAD TEMP[0].xy, RINPUT, IMM[0]
UMUL TEMP[1].x, SV[0], IMM[1]
UADD TEMP[0].x, TEMP[0], TEMP[1]
UMUL TEMP[1].x, SV[0], IMM...