Displaying 5 results from an estimated 5 matches for "invese".
Did you mean:
inverse
2010 Sep 09
9
Will a Quad-core i5 processor significantly speed up development on Linux or Mac?
I am looking at getting a new Thinkpad with an i5 processor.
I was curious to what extent this would speed up developing a Ruby on
Rails
app. I am guessing that this depends to what extent multi-threading is
utilized,
but I am not sure---hence the question :^)
If it is not that significant, my other choice would be to get a used
Thinkpad
or Mac Pro, duo-core.
So is there a significant
2010 Apr 07
2
[LLVMdev] graph abstraction proposal
...to look like a graph.
e.g.
struct BasicBlockGraph
{
Function& f;
BasicBlockGraph(Function& f) : f(f) {}
typedef BasicBlock NodeType;
...
child_begin(NodeType* node) {return succ_begin(node);}
child_begin(NodeType* node) {return succ_end(node);}
...
};
An invese graph is just another implementation
e.g.
struct BasicBlockInverseGraph
{
...
child_begin(NodeType* node) {return pred_begin(node);}
child_begin(NodeType* node) {return pred_end(node);}
...
};
And finally, the goal of the whole stuff, the simplification of
DominatorTreeBase::re...
2010 Apr 08
0
[LLVMdev] graph abstraction proposal
...Function& f;
>
> BasicBlockGraph(Function& f) : f(f) {}
>
> typedef BasicBlock NodeType;
>
> ...
> child_begin(NodeType* node) {return succ_begin(node);}
> child_begin(NodeType* node) {return succ_end(node);}
>
> ...
> };
>
> An invese graph is just another implementation
> e.g.
> struct BasicBlockInverseGraph
> {
> ...
>
> child_begin(NodeType* node) {return pred_begin(node);}
> child_begin(NodeType* node) {return pred_end(node);}
>
> ...
> };
>
>
>
> And finally, the goal of...
2007 Dec 04
3
Inserting a subsequence between values of a vector
Hallo,
suppose I have a vector:
x <- c(1,1,1,2,2,3,3,3,3,3,4)
How can I generate a vector/sequence in which a fixed number of zeroes (say
3) is inserted between the consecutive values, so I get
1,1,1,0,0,0,2,2,0,0,0,3,3,3,3,3,0,0,0,4
thanks a lot,
Serguei
[[alternative HTML version deleted]]
2010 Apr 09
0
[LLVMdev] graph abstraction proposal
...mp; f;
>
> BasicBlockGraph(Function& f) : f(f) {}
>
> typedef BasicBlock NodeType;
>
> ...
> child_begin(NodeType* node) {return succ_begin(node);}
> child_begin(NodeType* node) {return succ_end(node);}
>
> ...
> };
>
> An invese graph is just another implementation
> e.g.
> struct BasicBlockInverseGraph
> {
> ...
>
> child_begin(NodeType* node) {return pred_begin(node);}
> child_begin(NodeType* node) {return pred_end(node);}
>
> ...
> };
But here you also have to implement...