Displaying 14 results from an estimated 14 matches for "ckey".
Did you mean:
cker
2005 Apr 27
5
Eager load mysteriously deletes records
...whens.category_id AS t1_r2,
todos.hour AS t0_r1, todos.priority AS t0_r2, todos.id AS t0_r3,
todos.description AS t0_r4, todos.kind_id AS t0_r5 FROM todos LEFT OUTER
JOIN whens ON whens.todo_id = todos.id ORDER BY position ASC
[4;33mCategory Load (0.000000) [1;37mSELECT * FROM categories
WHERE ckey = ''where''
[4;35mCategory Load (0.000000) [0;37mSELECT * FROM categories
WHERE ckey = ''when''
[4;33mTodo Columns (0.000000) [1;37mSHOW FIELDS FROM todos
Rendering todos/list_edit within layouts/standard
[4;35mWhere Load (0.000000) [0;37mSELECT * FROM...
2015 Jul 08
7
[LLVMdev] LLVM loop vectorizer
Hello.
I am trying to vectorize a CSR SpMV (sparse matrix vector multiplication) procedure
but the LLVM loop vectorizer is not able to handle such code.
I am using cland and llvm version 3.4 (on Ubuntu 12.10). I use the -fvectorize option
with clang and -loop-vectorize with opt-3.4 .
The CSR SpMV function is inspired from
2016 Feb 18
3
[LLVMdev] LLVM loop vectorizer
...rds,
>> Alex Susu
>>
>> On 7/8/2015 9:17 PM, Michael Zolotukhin wrote:
>>> Hi Alex,
>>>
>>> Example from the link you provided looks like this:
>>>
>>> |for (i=0; i<M; i++ ){
>>> z[i]=0;
>>> for (ckey=row_ptr[i]; ckey<row_ptr[i+1]; ckey++) {
>>> z[i] += data[ckey]*x[colind[ckey]];
>>> }
>>> }|
>>>
>>> Is it the loop you are trying to vectorize? I don’t see any ‘if’ inside the innermost loop.
>> I tried to simplify this code...
2016 Jun 04
4
[LLVMdev] LLVM loop vectorizer
...Susu
>>>>
>>>> On 7/8/2015 9:17 PM, Michael Zolotukhin wrote:
>>>>> Hi Alex,
>>>>>
>>>>> Example from the link you provided looks like this:
>>>>>
>>>>> |for (i=0; i<M; i++ ){ z[i]=0; for (ckey=row_ptr[i]; ckey<row_ptr[i+1];
>>>>> ckey++) { z[i] += data[ckey]*x[colind[ckey]]; } }|
>>>>>
>>>>> Is it the loop you are trying to vectorize? I don’t see any ‘if’ inside the
>>>>> innermost loop.
>>>> I tried to simpl...
2016 Jun 07
2
[LLVMdev] LLVM loop vectorizer
...Susu
>>>>
>>>> On 7/8/2015 9:17 PM, Michael Zolotukhin wrote:
>>>>> Hi Alex,
>>>>>
>>>>> Example from the link you provided looks like this:
>>>>>
>>>>> |for (i=0; i<M; i++ ){ z[i]=0; for (ckey=row_ptr[i]; ckey<row_ptr[i+1];
>>>>> ckey++) { z[i] += data[ckey]*x[colind[ckey]]; } }|
>>>>>
>>>>> Is it the loop you are trying to vectorize? I don’t see any ‘if’ inside the
>>>>> innermost loop.
>>>> I tried to simpl...
2010 Oct 08
0
Wine release 1.2.1
...c (2):
cmd: Remove stray ';' from the resource files.
winhlp32: Move from a per resource to a global LANGUAGE setting.
Nikolay Sivov (1):
comctl32/listview: Fix infinite loop case for full item range as a first search range.
Octavian Voicu (1):
wined3d: Add missing ckey, fx, and pal directdraw caps.
Owen Rudge (2):
fusion: Install assemblies into correct directory for architecture.
fusion: Implement IAssemblyNameImpl_GetDisplayName more completely.
Paul Vriens (17):
comctl32: Add the Serbian (Latin) translation.
msi: Add the Serbian (Lati...
2016 Jul 22
0
Wine release 1.9.15
...Teb for process tests.
vcomp: Implement 16-bit atomic instructions.
vcomp/tests: Add tests for 16-bit atomic instructions.
vcomp: Implement 8-bit atomic instructions.
vcomp/tests: Add tests for 8-bit atomic instructions.
Stefan Dösinger (1):
ddraw/tests: Skip A4R4G4B4 ckey tests on Nvidia.
--
Alexandre Julliard
julliard at winehq.org
2017 May 18
5
[PATCH v3] drm: Add DRM_MODE_ROTATE_ and DRM_MODE_REFLECT_ to UAPI
...pu/drm/i915/intel_atomic_plane.c
+++ b/drivers/gpu/drm/i915/intel_atomic_plane.c
@@ -55,7 +55,7 @@ intel_create_plane_state(struct drm_plane *plane)
return NULL;
state->base.plane = plane;
- state->base.rotation = DRM_ROTATE_0;
+ state->base.rotation = DRM_MODE_ROTATE_0;
state->ckey.flags = I915_SET_COLORKEY_NONE;
return state;
@@ -178,8 +178,8 @@ int intel_plane_atomic_check_with_state(struct intel_crtc_state *crtc_state,
/* CHV ignores the mirror bit when the rotate bit is set :( */
if (IS_CHERRYVIEW(dev_priv) &&
- state->rotation & DRM_ROTATE_18...
2017 May 19
4
[PATCH v4 1/2] drm/blend: Fix comment typ-o
Fix DRM_REFELCT_Y -> DRM_REFLECT_Y.
Signed-off-by: Robert Foss <robert.foss at collabora.com>
---
drivers/gpu/drm/drm_blend.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/drm_blend.c b/drivers/gpu/drm/drm_blend.c
index a0d0d6843288..dee67ef6c670 100644
--- a/drivers/gpu/drm/drm_blend.c
+++ b/drivers/gpu/drm/drm_blend.c
@@ -129,7 +129,7 @@
*
2017 May 19
2
[PATCH v4 2/2] drm: Add DRM_MODE_ROTATE_ and DRM_MODE_REFLECT_ to UAPI
...pu/drm/i915/intel_atomic_plane.c
+++ b/drivers/gpu/drm/i915/intel_atomic_plane.c
@@ -55,7 +55,7 @@ intel_create_plane_state(struct drm_plane *plane)
return NULL;
state->base.plane = plane;
- state->base.rotation = DRM_ROTATE_0;
+ state->base.rotation = DRM_MODE_ROTATE_0;
state->ckey.flags = I915_SET_COLORKEY_NONE;
return state;
@@ -178,8 +178,8 @@ int intel_plane_atomic_check_with_state(struct intel_crtc_state *crtc_state,
/* CHV ignores the mirror bit when the rotate bit is set :( */
if (IS_CHERRYVIEW(dev_priv) &&
- state->rotation & DRM_ROTATE_18...
2017 May 18
0
[PATCH v3] drm: Add DRM_MODE_ROTATE_ and DRM_MODE_REFLECT_ to UAPI
...+ b/drivers/gpu/drm/i915/intel_atomic_plane.c
> @@ -55,7 +55,7 @@ intel_create_plane_state(struct drm_plane *plane)
> return NULL;
>
> state->base.plane = plane;
> - state->base.rotation = DRM_ROTATE_0;
> + state->base.rotation = DRM_MODE_ROTATE_0;
> state->ckey.flags = I915_SET_COLORKEY_NONE;
>
> return state;
> @@ -178,8 +178,8 @@ int intel_plane_atomic_check_with_state(struct intel_crtc_state *crtc_state,
>
> /* CHV ignores the mirror bit when the rotate bit is set :( */
> if (IS_CHERRYVIEW(dev_priv) &&
> - sta...
2017 May 22
0
[PATCH v4 2/2] drm: Add DRM_MODE_ROTATE_ and DRM_MODE_REFLECT_ to UAPI
...+ b/drivers/gpu/drm/i915/intel_atomic_plane.c
> @@ -55,7 +55,7 @@ intel_create_plane_state(struct drm_plane *plane)
> return NULL;
>
> state->base.plane = plane;
> - state->base.rotation = DRM_ROTATE_0;
> + state->base.rotation = DRM_MODE_ROTATE_0;
> state->ckey.flags = I915_SET_COLORKEY_NONE;
>
> return state;
> @@ -178,8 +178,8 @@ int intel_plane_atomic_check_with_state(struct intel_crtc_state *crtc_state,
>
> /* CHV ignores the mirror bit when the rotate bit is set :( */
> if (IS_CHERRYVIEW(dev_priv) &&
> - sta...
2017 May 22
0
[PATCH v4 2/2] drm: Add DRM_MODE_ROTATE_ and DRM_MODE_REFLECT_ to UAPI
...+ b/drivers/gpu/drm/i915/intel_atomic_plane.c
> @@ -55,7 +55,7 @@ intel_create_plane_state(struct drm_plane *plane)
> return NULL;
>
> state->base.plane = plane;
> - state->base.rotation = DRM_ROTATE_0;
> + state->base.rotation = DRM_MODE_ROTATE_0;
> state->ckey.flags = I915_SET_COLORKEY_NONE;
>
> return state;
> @@ -178,8 +178,8 @@ int intel_plane_atomic_check_with_state(struct intel_crtc_state *crtc_state,
>
> /* CHV ignores the mirror bit when the rotate bit is set :( */
> if (IS_CHERRYVIEW(dev_priv) &&
> - sta...
2010 Sep 03
0
Wine release 1.3.2
...paces property.
msxml3: Fix IXMLDOMDocument::getElementsByTagName() for some special cases.
msxml3: Fix invalid parameter handling for IXMLDOMElement::getElementsByTagName().
msxml3: Implement IXMLDOMNamedNodeMap::getQualifiedItem().
Octavian Voicu (4):
wined3d: Add missing ckey, fx, and pal directdraw caps.
winmm: Replace return types with symbolic constants in mci command resources.
winmm: Replace command ids with symbolic constants in mci command resources.
include: Add MCI_INTEGER64 mci type.
Old?ich Jedli?ka (2):
ddraw/tests: New visual back b...