Displaying 20 results from an estimated 400 matches similar to: "Second copy engine on GF116"
2014 Nov 21
3
Second copy engine on GF116
On Fri, Nov 21, 2014 at 1:16 AM, Andy Ritger <aritger at nvidia.com> wrote:
> Hi Ilia,
>
> Actually 0x90b8 is different than copy engine. I'm not very familiar
> with it, but 0x90b8 is an engine for performing LZO decompression as
> part of performing the copy. It has a variety of limitations (e.g.,
> cannot handle blocklinear format), and was only in a few Fermi
2014 Nov 25
3
Second copy engine on GF116
On Mon, Nov 24, 2014 at 8:33 PM, Andy Ritger <aritger at nvidia.com> wrote:
> On Fri, Nov 21, 2014 at 01:39:55AM -0500, Ilia Mirkin wrote:
>> On Fri, Nov 21, 2014 at 1:16 AM, Andy Ritger <aritger at nvidia.com> wrote:
>> > Hi Ilia,
>> >
>> > Actually 0x90b8 is different than copy engine. I'm not very familiar
>> > with it, but 0x90b8 is
2014 Nov 25
0
Second copy engine on GF116
On Fri, Nov 21, 2014 at 01:39:55AM -0500, Ilia Mirkin wrote:
> On Fri, Nov 21, 2014 at 1:16 AM, Andy Ritger <aritger at nvidia.com> wrote:
> > Hi Ilia,
> >
> > Actually 0x90b8 is different than copy engine. I'm not very familiar
> > with it, but 0x90b8 is an engine for performing LZO decompression as
> > part of performing the copy. It has a variety of
2014 Nov 21
0
Second copy engine on GF116
Hi Ilia,
Actually 0x90b8 is different than copy engine. I'm not very familiar
with it, but 0x90b8 is an engine for performing LZO decompression as
part of performing the copy. It has a variety of limitations (e.g.,
cannot handle blocklinear format), and was only in a few Fermi chips,
as I understand it.
It is probably easiest to just ignore it. You can distinguish this
decompress engine
2014 Nov 26
1
Second copy engine on GF116
On 25/11/14 22:05, Andy Ritger wrote:
> On Tue, Nov 25, 2014 at 10:57:44AM -0500, Ilia Mirkin wrote:
>> On Mon, Nov 24, 2014 at 8:33 PM, Andy Ritger <aritger at nvidia.com> wrote:
>>> On Fri, Nov 21, 2014 at 01:39:55AM -0500, Ilia Mirkin wrote:
>>>> On Fri, Nov 21, 2014 at 1:16 AM, Andy Ritger <aritger at nvidia.com> wrote:
>>>>> Hi Ilia,
2014 Nov 30
2
[PATCH] gf116: remove copy1 engine
Indications are that no GF116's actually have a copy engine there, but
actually have the decompression engine. This engine can be made to do
copies, but that should be done separately.
Unclear why this didn't turn up on all GF116's, but perhaps the
non-mobile ones came with enough VRAM to not trigger ttm migrations in
test scenarios.
Fixes:
2014 Nov 25
0
Second copy engine on GF116
On Tue, Nov 25, 2014 at 10:57:44AM -0500, Ilia Mirkin wrote:
> On Mon, Nov 24, 2014 at 8:33 PM, Andy Ritger <aritger at nvidia.com> wrote:
> > On Fri, Nov 21, 2014 at 01:39:55AM -0500, Ilia Mirkin wrote:
> >> On Fri, Nov 21, 2014 at 1:16 AM, Andy Ritger <aritger at nvidia.com> wrote:
> >> > Hi Ilia,
> >> >
> >> > Actually 0x90b8 is
2014 Oct 26
6
[Bug 85465] New: X loses resources after suspend/resume
https://bugs.freedesktop.org/show_bug.cgi?id=85465
Bug ID: 85465
Summary: X loses resources after suspend/resume
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee:
2016 Dec 31
2
Automatic Insertion of OpenACC/OpenMP directives
Dear Mehdi,
I've changed your example a little bit:
float saxpy(float a, float *x, float *y, int n) {
int j = 0;
for (int i = 0; i < n; ++i) {
y[j] = a*x[i] + y[I]; // Change 'I' into 'j'?
++j;
}
}
I get this code below, once I replace 'I' with 'j'. We are copying n
positions of both arrays, 'x' and 'y':
float saxpy(float a,
2019 Jan 27
1
[PATCH] update known chipsets list
---
man/nouveau.man | 9 ++++++++-
src/nv_driver.c | 8 ++++++--
2 files changed, 14 insertions(+), 3 deletions(-)
diff --git a/man/nouveau.man b/man/nouveau.man
index 07d53c8..4878f24 100644
--- a/man/nouveau.man
+++ b/man/nouveau.man
@@ -63,7 +63,14 @@ GF100, GF104, GF106, GF108, GF110, GF114, GF116, GF117, GF119
GK104, GK106, GK107, GK110, GK208
.TP 22
.B GeForce GTX 750
-GM107
+GM107,
2016 Dec 31
0
Automatic Insertion of OpenACC/OpenMP directives
Hi,
> On Dec 31, 2016, at 8:33 AM, Fernando Magno Quintao Pereira via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Dear LLVMers,
>
> we have released a tool that uses LLVM to insert OpenACC or OpenMP
> 4.0 directives in programs. You can use the tool online here:
> http://cuda.dcc.ufmg.br/dawn/. Our tool, dawn-cc, analyzes the LLVM IR
> to infer the sizes of
2016 Dec 31
3
Automatic Insertion of OpenACC/OpenMP directives
Dear LLVMers,
we have released a tool that uses LLVM to insert OpenACC or OpenMP
4.0 directives in programs. You can use the tool online here:
http://cuda.dcc.ufmg.br/dawn/. Our tool, dawn-cc, analyzes the LLVM IR
to infer the sizes of memory chunks, and to find dependences within
loops. After that, we use debug information to translate the low-level
information back into annotations that we
2017 Jan 03
2
Automatic Insertion of OpenACC/OpenMP directives
> On Jan 3, 2017, at 7:17 AM, Jonathan Roelofs <jonathan at codesourcery.com> wrote:
>
>
>
> On 12/31/16 12:37 PM, Fernando Magno Quintao Pereira via llvm-dev wrote:
>> Dear Mehdi,
>>
>> I've changed your example a little bit:
>>
>> float saxpy(float a, float *x, float *y, int n) {
>> int j = 0;
>> for (int i = 0; i < n;
2013 Jan 09
55
[Bug 59168] New: [nvc3/Quadro2000M] graphic garbage/corruption/noise on resume
https://bugs.freedesktop.org/show_bug.cgi?id=59168
Priority: medium
Bug ID: 59168
Assignee: nouveau at lists.freedesktop.org
Summary: [nvc3/Quadro2000M] graphic garbage/corruption/noise on
resume
QA Contact: xorg-team at lists.x.org
Severity: major
Classification: Unclassified
OS: Linux (All)
2012 Jun 15
22
[Bug 51144] New: significant pixel corruption in text
https://bugs.freedesktop.org/show_bug.cgi?id=51144
Bug #: 51144
Summary: significant pixel corruption in text
Classification: Unclassified
Product: xorg
Version: git
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2014 May 27
2
[PATCH 1/2] nvc0: add GK20A 3D class
On Tue, May 27, 2014 at 12:59 AM, Alexandre Courbot <acourbot at nvidia.com> wrote:
> GK20A is mostly compatible with GK104, but features a new 3D
> class. Add it to the relevant header and use it when GK20A is
> detected.
>
> Signed-off-by: Alexandre Courbot <acourbot at nvidia.com>
> ---
> src/gallium/drivers/nouveau/nv_object.xml.h | 1 +
>
2014 Jan 17
19
[Bug 73744] New: Constant lock ups with NVIDIA GeForce 8400 GS
https://bugs.freedesktop.org/show_bug.cgi?id=73744
Priority: medium
Bug ID: 73744
Assignee: nouveau at lists.freedesktop.org
Summary: Constant lock ups with NVIDIA GeForce 8400 GS
QA Contact: xorg-team at lists.x.org
Severity: blocker
Classification: Unclassified
OS: Linux (All)
Reporter: grave_123 at
2014 Jan 10
2
[PATCH 1/3] drm/nouveau: provide a way for devinit to mark engines as disabled
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
I decided to let the user still specify config=BLA=1 to override the hw
disable in case we get something wrong or for double-checking stuff, but I
suspect it won't really be used much. I'm not terribly fond of the message
text, if you come up with something better, feel free to drop it in.
2015 Dec 08
0
CentOS 6 pci audio card not enabled
CentOS 6 up-to-date 2.6.32-573.8.1.el6.x86_64
Gigabyte GA-Z68P-DS3
on-board audio BIOS disabled.
Intel I5
Pny 550Ti video
Envy 24HT pci audio module
I want to use the fiber in/out of the audio card, but it is not listed
in System/Preferences/Sound/Hardware, only the HDMI is available.
It was installed in the pci slot when the system CentOS 6.0 was installed.
I have searched all over Google,
2014 Sep 08
1
[PATCH] gpio: rename g92 class to g94
nv92 hardware has only 16 interrupt lines, while nv94 and later
has 32. Accessing 0xe0c{0,4} registers on nv92 can lead to incorrect
PDISP setup. This is a regression introduced with
commit 9d0f5ec9ee0fd5dc5fc1cc2cf559286431e406e3
Author: Ben Skeggs <bskeggs at redhat.com>
Date: Mon May 12 15:22:42 2014 +1000
gpio: split g92 class from nv50
Reported-by: estece on #nouveau
Cc: stable