Displaying 3 results from an estimated 3 matches for "binpo".
Did you mean:
binfo
2015 May 09
5
[PATCH 1/4] nvc0/ir: avoid jumping to a sched instruction
...9620..28081fa 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp
@@ -1316,6 +1316,8 @@ CodeEmitterGK110::emitFlow(const Instruction *i)
} else
if (mask & 2) {
int32_t pcRel = f->target.bb->binPos - (codeSize + 8);
+ if (writeIssueDelays && !(f->target.bb->binPos & 0x3f))
+ pcRel += 8;
// currently we don't want absolute branches
assert(!f->absolute);
code[0] |= (pcRel & 0x1ff) << 23;
diff --git a/src/gallium/drivers/nouve...
2002 Sep 10
3
Printing to a windows printer
Hi,
I trying to print a label printer that is attached to a windows95 machine.
The job is sent to the printer queue on the linux machine (Red Hat 7.3),
but never printed on the printer. When I check the status of the print
queue on the linux machine, I get the following:
[root@S12601 syn]# lpq -Pbinpos
Printer: binpos@S12601
Queue: no printable jobs in queue
Server: no server active
Status: job 'bdialin@S12601+410' removed at 10:46:58.356
Rank Owner/ID Class Job Files Size Time
done root@S12601+219 A 219 (STDIN) 200
1...
2014 Jul 18
5
[PATCH 0/5] nvc0: fp64 preparation
Most of codegen is already FP64-ready. There are a few edge-cases that I ran
into, many of which can apply even to non-fp64-enabled programs (although the
double-wide registers are not very common without fp64).
I've yet to give this a full piglit run, but wanted to send these out in case
someone wanted to comment. They do not depend on the preliminary core fp64
work.
Ilia Mirkin (5):