Displaying 6 results from an estimated 6 matches for "ltable".
Did you mean:
table
2011 Oct 06
3
Running *slow*
Anyone got any hints on how to make this code more efficient? An early
version (which to be fair did more than this one is) ran for 330 hours
and produced no output.
I have a two column table, Dat, with 12,000,000 rows and I want to
produce a lookup table, ltable, in a 1 dimensional matrix with one
copy of each of the values in Dat:
for (i in 1:nrow(Dat))
{
for (j in 1:2)
{
#If next value is already in ltable, do nothing
if (is.na(match(Dat[i,j], ltable))){ltable <- rbind(ltable,Dat[i,j])}
}
}
but it takes forever to produce anything.
Any advice gra...
2013 Oct 15
23
[PATCH 00/21] Upgrade to Lua 5.2.2, add filesystem module and get_key binding
...parser.h | 75 +-
com32/lua/src/lstate.c | 271 +-
com32/lua/src/lstate.h | 149 +-
com32/lua/src/lstring.c | 174 +-
com32/lua/src/lstring.h | 21 +-
com32/lua/src/lstrlib.c | 576 ++-
com32/lua/src/ltable.c | 203 +-
com32/lua/src/ltable.h | 15 +-
com32/lua/src/ltablib.c | 140 +-
com32/lua/src/ltm.c | 20 +-
com32/lua/src/ltm.h | 9 +-
com32/lua/src/lua.c | 341 +-
com32/lua/src/lua.h...
2013 Oct 15
0
Upgrade to Lua 5.2.2, add filesystem module and get_key binding
...+-
> com32/lua/src/lstate.c | 271 +-
> com32/lua/src/lstate.h | 149 +-
> com32/lua/src/lstring.c | 174 +-
> com32/lua/src/lstring.h | 21 +-
> com32/lua/src/lstrlib.c | 576 ++-
> com32/lua/src/ltable.c | 203 +-
> com32/lua/src/ltable.h | 15 +-
> com32/lua/src/ltablib.c | 140 +-
> com32/lua/src/ltm.c | 20 +-
> com32/lua/src/ltm.h | 9 +-
> com32/lua/src/lua.c | 341...
2014 Mar 02
3
pull request: upgrade to Lua 5.2.3, automatic Linux boot menu and cmenu binding
...ser.h | 75 +-
com32/lua/src/lstate.c | 278 ++-
com32/lua/src/lstate.h | 149 +-
com32/lua/src/lstring.c | 174 +-
com32/lua/src/lstring.h | 21 +-
com32/lua/src/lstrlib.c | 576 +++--
com32/lua/src/ltable.c | 203 +-
com32/lua/src/ltable.h | 19 +-
com32/lua/src/ltablib.c | 140 +-
com32/lua/src/ltm.c | 20 +-
com32/lua/src/ltm.h | 9 +-
com32/lua/src/lua.c | 341 ++-
com32/lua/src/lua.h...
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
...8 51184 0 0.02 51162 0 0.02 51162
lpc.ll 5 97839 0 0.02 97809 0 0.02 97809
LR0.ll 13 75095 0 0.01 75069 0 0.02 75069
lr.ll 28 171193 0 0.02 171180 0 0.02 171180
lstate.ll 10 51152 0 0.01 51137 0 0.02 51137
lstring.ll 4 34379 0 0.01 34364 0 0.01 34364
lstrlib.ll 45 196047 0 0.02 196032 0 0.02 193453
ltable.ll 26 120256 0 0.02 120241 0 0.02 120241
ltablib.ll 14 43214 0 0.01 43199 0 0.01 43199
ltm.ll 3 18146 0 0.01 18131 0 0.01 18131
lua.ll 23 81489 0 0.01 81474 0 0.01 81474
lu.ll 12 21812 0 0.01 21766 0 0.01 21766
LU.ll 3 17827 0 0.01 17807 0 0.01 17807
lundump.ll 13 58663 0 0.01 58648 0 0.01 58648
lv...