search for: dorun

Displaying 17 results from an estimated 17 matches for "dorun".

Did you mean: doran
2012 Jan 28
2
Need very fast application of 'diff' - ideas?
...[3]: import numpy as np In [4]: arr = np.random.randint(0, 1000, (10000000,1)).astype("int16") In [5]: arr1 = arr[1:].view() In [6]: timeit arr2 = arr1 - arr[:-1] 10 loops, best of 3: 20.1 ms per loop In Clojure: (defn subtract-lag [n] (let [v (take n (repeatedly rand))] (time (dorun (map - v (cons 0 v)))))) [[alternative HTML version deleted]]
2017 Jun 10
1
[Bug 101371] New: GlobalCSE Pass moves phi instructions
...18ca0, q=0x81d0c0) at ../../../../../src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp:219 #5 0x00000000004554c0 in nv50_ir::GlobalCSE::visit (this=0x7ffffffe7b70, bb=0x82fd10) at ../../../../../src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp:3466 #6 0x00000000004200fd in nv50_ir::Pass::doRun (this=0x7ffffffe7b70, func=0x7bc1a0, ordered=false, skipPhi=false) at ../../../../../src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp:495 #7 0x000000000041ff05 in nv50_ir::Pass::doRun (this=0x7ffffffe7b70, prog=0x7bc000, ordered=false, skipPhi=false) at ../../../../../src/gallium/drivers/nouveau...
2019 Jul 25
5
[Bug 111217] New: compilation of vdpau shaders crashes in handleCVT_CVT
https://bugs.freedesktop.org/show_bug.cgi?id=111217 Bug ID: 111217 Summary: compilation of vdpau shaders crashes in handleCVT_CVT Product: Mesa Version: unspecified Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee:
2019 Jul 18
3
[Bug 111167] New: Dividing zero by a uniform in loop header causes segfault in nv50_ir::NVC0LegalizeSSA::handleDIV
...at ../src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp:54 #6 0x00007fc7191cb4b3 in nv50_ir::NVC0LegalizeSSA::visit ( this=0x7ffd7753af60, bb=<optimized out>) at ../src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp:334 #7 0x00007fc719111928 in nv50_ir::Pass::doRun (this=0x7ffd7753af60, func=<optimized out>, ordered=<optimized out>, skipPhi=true) at ../src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp:500 #8 0x00007fc7191119f4 in nv50_ir::Pass::doRun (this=0x7ffd7753af60, prog=<optimized out>, ordered=false, skipPhi=true)...
2016 Dec 19
3
fts-solr: Returning 400 on searches; unescaped braces
...coyote.http11.Http11Processor.service(Http11Processor.java:667) at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:789) at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1437) at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at org.apache.tomcat.ut...
2015 Aug 21
2
[PATCH 2/2] core/graphics: fix lss16 parsing
...equence */ - data = getnybble(); - if (data == 0) { + rle_len = getnybble(); + if (rle_len == 0) { /* long run */ uint8_t hi; - data = getnybble(); + rle_len = getnybble(); hi = getnybble(); hi <<= 4; - data |= hi; - data += 16; + rle_len |= hi; + rle_len += 16; } /* dorun */ - for (i = 0; i < data; i++) + for (i = 0; i < rle_len; i++) *out++ = prev_pixel; size -= i; @@ -249,7 +256,7 @@ __export void vgadisplayfile(FILE *_fd) /* Load the header */ while (size--) - *p = getc(fd); + *p++ = getc(fd); if (*p != EOF) { com32sys_t ireg, oreg; --...
2019 Jul 25
9
[Bug 111218] New: Segmentation fault in nv50_ir::NVC0LegalizeSSA::handleDIV when dividing result of textureSize
...55e592c0) at ../src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp:54 #1 0x00007ffff2e6b38b in nv50_ir::NVC0LegalizeSSA::visit (this=0x7fffffffba50, bb=<optimized out>) at ../src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp:334 #2 0x00007ffff2dc40d8 in nv50_ir::Pass::doRun (this=this at entry=0x7fffffffba50, func=<optimized out>, ordered=ordered at entry=false, skipPhi=skipPhi at entry=true) at ../src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp:495 #3 0x00007ffff2dc41b4 in nv50_ir::Pass::doRun (this=this at entry=0x7fffffffba50, prog=prog at entry=0x555...
2017 Jan 16
0
fts-solr: Returning 400 on searches; unescaped braces
...ttp11Processor.service(Http11Processor.java:667) > at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) > at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:789) > at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1437) > at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) > at...
2015 Aug 20
4
boot logo via boot.txt
We recently have upgraded syslinux and have noticed that the boot logo code via boot.txt no longer works. I have a couple patches that get it close to working but I appear to be having trouble with color maps. Is there someone would want to help me finish figuring this out? Any interest in the patches I have to fix the rle decoder?
2014 Oct 30
0
Display graphic from filename broken?
> Hi, > > the display of LSS16 files from a DISPLAY file (as documented in > http://www.syslinux.org/wiki/index.php/SYSLINUX#Display_graphic_from_filename:) > seems heavily broken since syslinux has been converted from assembler to > C. I already discovered one bug in core/include/graphics.h (and > core/graphics.c): the pointer VGAFilePtr is of type uint16_t*, but > should
2014 Oct 30
3
Display graphic from filename broken?
Hi, the display of LSS16 files from a DISPLAY file (as documented in http://www.syslinux.org/wiki/index.php/SYSLINUX#Display_graphic_from_filename:) seems heavily broken since syslinux has been converted from assembler to C. I already discovered one bug in core/include/graphics.h (and core/graphics.c): the pointer VGAFilePtr is of type uint16_t*, but should be plain char*. This bug causes the
2015 Nov 25
4
NV50 compute support questions
...this at entry=0x7fffffffd460, tex=tex at entry=0x6f8218) at codegen/nv50_ir_ra.cpp:2087 #2 0x00007ffff4decde3 in nv50_ir::RegAlloc::InsertConstraintsPass::visit ( this=<optimized out>, bb=<optimized out>) at codegen/nv50_ir_ra.cpp:2159 #3 0x00007ffff4da3b48 in nv50_ir::Pass::doRun ( this=this at entry=0x7fffffffd460, func=func at entry=0x702310, ordered=ordered at entry=true, skipPhi=skipPhi at entry=true) at codegen/nv50_ir_bb.cpp:495 #4 0x00007ffff4da3cca in nv50_ir::Pass::run (this=this at entry=0x7fffffffd460, func=func at entry=0x702310, ordered=ord...
2015 Nov 26
2
NV50 compute support questions
...y=0x6f8218) >> at codegen/nv50_ir_ra.cpp:2087 >> #2 0x00007ffff4decde3 in nv50_ir::RegAlloc::InsertConstraintsPass::visit ( >> this=<optimized out>, bb=<optimized out>) at >> codegen/nv50_ir_ra.cpp:2159 >> #3 0x00007ffff4da3b48 in nv50_ir::Pass::doRun ( >> this=this at entry=0x7fffffffd460, func=func at entry=0x702310, >> ordered=ordered at entry=true, skipPhi=skipPhi at entry=true) >> at codegen/nv50_ir_bb.cpp:495 >> #4 0x00007ffff4da3cca in nv50_ir::Pass::run >> (this=this at entry=0x7fffffffd460,...
2015 Nov 26
0
NV50 compute support questions
...460, tex=tex at entry=0x6f8218) > at codegen/nv50_ir_ra.cpp:2087 > #2 0x00007ffff4decde3 in nv50_ir::RegAlloc::InsertConstraintsPass::visit ( > this=<optimized out>, bb=<optimized out>) at > codegen/nv50_ir_ra.cpp:2159 > #3 0x00007ffff4da3b48 in nv50_ir::Pass::doRun ( > this=this at entry=0x7fffffffd460, func=func at entry=0x702310, > ordered=ordered at entry=true, skipPhi=skipPhi at entry=true) > at codegen/nv50_ir_bb.cpp:495 > #4 0x00007ffff4da3cca in nv50_ir::Pass::run > (this=this at entry=0x7fffffffd460, > func=func...
2015 Nov 26
0
NV50 compute support questions
...codegen/nv50_ir_ra.cpp:2087 >>> #2 0x00007ffff4decde3 in >>> nv50_ir::RegAlloc::InsertConstraintsPass::visit ( >>> this=<optimized out>, bb=<optimized out>) at >>> codegen/nv50_ir_ra.cpp:2159 >>> #3 0x00007ffff4da3b48 in nv50_ir::Pass::doRun ( >>> this=this at entry=0x7fffffffd460, func=func at entry=0x702310, >>> ordered=ordered at entry=true, skipPhi=skipPhi at entry=true) >>> at codegen/nv50_ir_bb.cpp:495 >>> #4 0x00007ffff4da3cca in nv50_ir::Pass::run >>> (this=this at en...
2015 Nov 25
0
NV50 compute support questions
...460, tex=tex at entry=0x6f8218) > at codegen/nv50_ir_ra.cpp:2087 > #2 0x00007ffff4decde3 in nv50_ir::RegAlloc::InsertConstraintsPass::visit ( > this=<optimized out>, bb=<optimized out>) at > codegen/nv50_ir_ra.cpp:2159 > #3 0x00007ffff4da3b48 in nv50_ir::Pass::doRun ( > this=this at entry=0x7fffffffd460, func=func at entry=0x702310, > ordered=ordered at entry=true, skipPhi=skipPhi at entry=true) > at codegen/nv50_ir_bb.cpp:495 > #4 0x00007ffff4da3cca in nv50_ir::Pass::run > (this=this at entry=0x7fffffffd460, > func=func...
2015 Nov 20
4
NV50 compute support questions
Hi Samual, et al, In http://cgit.freedesktop.org/mesa/mesa/commit/src/gallium/drivers/nouveau?id=ff72440b40211326eda118232fabd53965410afd you write: "This compute support has been tested by Pierre Moreau and myself with some compute kernels." Can you provide testing instructions (and the necessary files) so that I can try to reproduce your tests ? And once I've reproduced your