#bitfighter IRC Log

Index Search ←Prev date Next date→

IRC Log for 2014-12-11

Timestamps are in GMT/BST.

00:45:35watusimoto has joined
00:45:35ChanServ sets mode +o
00:50:21raptoroh Lua stack! oh Lua stack!... thy ways are so frustrating;
00:54:51raptorok, without modifying the c++ code
00:54:56raptori ran two tests:
00:55:17raptortest #1 use table.clear() on a global 'items' array
00:55:44raptortest #2 create the array each tick and pass that into bf:findAllObjects()
00:56:23raptor#1 averaged 105ms over 10000 iterations
00:56:31raptor#2 averaged 113ms over 10000 iterations
00:57:10raptorso that's like an 8% difference
00:57:39raptorthis is with LuaJIT
01:01:15Invisible has joined
01:06:58raptorfor reference, i did a test with just object construction in straight Lua
01:07:28raptorso instead of calling bf:findAllObjects(), I just filled up a table with integers
01:07:43raptorthen compared the items = {} construction every tick, or clearing it
01:08:28raptorsince the table had 300 items in it, it was faster to create the table every tick: 119 ms vs 129 ms
01:08:52raptorbut obviously the garbage collector probably didn't have time to kick in
01:12:42raptorah ha! calls with the C API are not JIT-compiled
01:14:05raptor"Calls to C functions can be inlined in JIT-compiled code, unlike calls to functions bound via the classic Lua/C API"
01:14:19raptorfrom here: http://luajit.org/ext_ffi.html
01:14:38raptorso basically, with LuaJIT - we're slowing ourselves down by using the C API
01:18:19raptorok time for bed
01:18:27raptornight!
01:18:27raptor Quit ()
01:24:55Invisible Quit (Ping timeout: 264 seconds)
02:02:55sam686 Quit (*.net *.split)
02:08:04sam686 has joined
02:08:05orwell.freenode.net sets mode +v
02:09:01sam686 is now known as sam686_
02:13:38sam686_ is now known as sam686
05:18:59LordDVG has joined
05:30:56LordDVG Quit (Remote host closed the connection)
12:25:15LordDVG has joined
12:29:04raptor has joined
12:29:04ChanServ sets mode +o
12:29:13raptorgood day!
13:08:57watusimotohello
13:09:06watusimotoman, I fell asleep early again last night
13:09:09watusimotowhat gives??
13:09:43watusimotoI will admit I've been feeling great getting 9-10 hours of sleep each night more or less since thanskgiving
13:10:05watusimotoclose to 11 sometimes... but it really cuts into my day
13:27:49raptoryou probably have a bug
13:28:07raptorand your body is forcing you to handle it
13:28:28raptorI sent you an e-mail that may or may not be understandable
13:48:07watusimotoI don't feel at all sick
13:48:10watusimotoI feel great!
13:48:32watusimotoreading your email...
13:49:09watusimotoso... lua/jit is faster than c++... interesting
13:49:21watusimotoso for our table clearing, call a lua scriptlet?
13:49:56watusimototwo options for doing that:
13:49:58raptori did that test, too
13:50:09watusimoto1) have scriplet be called from c++ when we need it
13:50:11raptorfor table clearing calling table.clear() in Lua (with LuaJIT) is faster
13:50:31watusimoto2) wrap calls to findObjects in a lua helper function that does the clearing before c++ gets the table
13:50:50raptor2 would definitely be faster
13:51:17raptorbecause it doesn't call the C API which uses the standard intepreter
13:51:38raptoror more accurately: it doesn't call the C API which is not JIT-compiled
13:51:51raptoralso
13:52:32watusimotobut when the c API calls a lua script, that gets jit'ed, right?
13:52:36raptorit turns out that object construction each tick is cheaper in LuaJIT than clearing larger tables on the order of 100 or so objects
13:53:19watusimototime to clear table with 100 objects > time to throw away table and create new one
13:53:26raptori'm not sure about that
13:53:36watusimotothough in most cases, we'll have far fewer than 100 objects
13:53:37raptornot sure about the JIT'd code from C API
13:53:42watusimotook
13:54:19watusimotoso maybe we write a wrapper that gurantees the table is empty before it gets to c++
13:54:58raptoryes, but i'm not sure how to stick that in
13:55:08watusimotowe wrap other functions, no?
13:55:26raptoryes, but I don't remember if we put them into the 'bf' or 'levelgen' namespaces
13:55:45watusimotohow do we call findObjects currently?
13:55:57watusimotolike what does the lua code look like?
13:56:22watusimotofindObjects(MineType, resultsTable) ?
13:56:31watusimotothere must be some namespaces in there somewhere
13:56:40watusimotoI know MineType needs a namespace
14:00:36watusimotoI can probably take care of this, since I "created" (discovered, really) the problem
14:00:41watusimotoand I know I can clear the table in Lua!
14:01:12watusimotoI guess one thing to test would be whether clearing in lua would be faster than clearing in c++ using a lua script
14:01:18watusimotothough I think it hardly matters
14:01:38watusimoto^^ using a cached/precompiled lua script
14:02:43watusimotobtw, as for portable apps, I don't recall rejecting it for any specific reasons; I think I decided it wasn't worth the effort. I don't think I ever contacted them, and am happy to slot them into our release process if they host our app
14:24:49raptorclearing in Lua with LuaJIT is faster than in the C API
14:25:04raptorif we weren't using LuaJIT then it may be slower
14:49:17watusimotoyes, but that is not what I am saying
14:49:44watusimotoI am comparing clearing in Lua vs. clearing in a Lua fragment called from C++; not writing the clearing action using the C++ api
14:51:47Nothing_Much Quit (Read error: Connection reset by peer)
14:56:15raptorohhhh
14:56:17raptoroh ok
14:56:18raptori get it
15:17:52Nothing_Much has joined
15:40:27watusimotoI think we can precompile a snippet and if it is compiled with jit internally (which is probably is) it should be pretty fast, and might be cleaner than a lua wrapper
15:49:04raptoryes
15:49:06raptori agree
15:50:16Nothing_Much Quit (Read error: Connection reset by peer)
15:52:28Nothing_Much has joined
16:24:50Darrel has joined
17:30:50raptorwe could rewrite all lua bindings in the FFI: http://luajit.org/ext_ffi.html
17:31:34watusimotoyou're kidding, right?
17:31:35raptorbut then we'd be tying ourselves to luajit instead of lua
17:31:46raptorheh, yes
17:32:08watusimotoI think our current binding system is not too bad, and is largely complete
17:32:11raptorunless we wanted easier maintainable code that was faster and less complex
17:32:17watusimotoha
17:32:20raptorbut it would sure be an enormous job
17:32:35watusimotoffi has an alarmling looking syntax
17:33:45watusimotowell, maybe less alarming than I first thought
17:34:04watusimotoI saw the lua code and thought it was supposed to be c++ code
17:34:06watusimoto:-)
17:34:16raptoryeah... it looks pretty slick - the only thing is that I think it uses 0-indexed code
17:34:21watusimotobut ffi only steems to talk about c, not c++
17:34:26raptorwhich is nice, but might be confusing with working with Lua 1-indexes
17:34:37watusimotofor us, yes... for others, not sure
17:34:53watusimotobut that is one of my big complaints about lua
17:35:17raptorwell, I've heard, and this is just a rumor, that there exists someone that understands the Lua stack intimately enough, although I haven't met them...
17:41:06watusimotoyes, the ffi does actually look pretty cool
17:41:25watusimotoI wonder if we can try it without committing to a full conversion
17:44:41watusimotothough i will say that with jit, I don't feel we're really hurting for speed
17:52:32watusimotoanother thought related to findObjects
17:53:01watusimotoreading through the roadmap for jit 2.1 (which may or may not ever get written) shows me a big planned feature is a new GC system
17:53:27watusimotospecifically designed to remedy the way devs (like us) take great pains to avoid creating/deleting lots of objects
17:53:54watusimotoif that happens, passing a table to findObjects will feel clunky
17:54:10watusimotoso maybe we should consider removing it now
17:54:22watusimotobut even as I write that I feel myself saying no, keep it for now
17:54:34watusimotoif we are going to make a change like that, why rush into it?
17:54:40watusimotowhy not wait for luajit2.1?
18:15:12raptorit's a trap!
18:15:15raptor(premature optimizations)
18:17:48LordDVG Quit (Remote host closed the connection)
18:39:58fordcars has joined
18:40:24fordcarsHey raptor, what was kaen's shader project again?
18:40:48raptorhe started a clone
18:40:57raptorgo to the google code clones page for bitfighter
18:41:02raptorand search for 'shader'
18:41:09fordcarsOkey I'll check it out
18:41:16raptorit may have 'bkconrad' in it
18:41:24Darrel is now known as Darrel[OFF]
18:42:18fordcarsOk got it
18:42:52fordcarsWow, that looks interesting
19:28:44raptor Quit ()
20:02:34Raven67854 has joined
20:24:21sam686watusimoto, still having a joystick crash problem? I can't get it to crash on me and i also have a joystick/gamepad. My thinking is there might be a problem with a compiler? I used visual C++ 2008, does it crash if you use my build? http://sam6.25u.com/upload/bitfighter_019d_59415d660678.zip
20:25:31sam686oops, you need to add in joystick_presets.ini
20:27:04sam686just added joystick_presets.ini to that zip file
20:30:57sam686it could also be maybe outdated boost files not working too well on newest version of visual studio maybe, got warnings before about it in boost if using newest version of visual studio
21:51:14watusimoto Quit (Quit: Leaving.)

Index Search ←Prev date Next date→

These logs were automatically created by BFLogBot on irc.freenode.net.