lekernel changed the topic of #m-labs to: Mixxeo, Migen, MiSoC & other M-Labs projects :: fka #milkymist :: Logs http://irclog.whitequark.org/m-labs
sturmflut has quit [Quit: Leaving]
Bertl_zZ is now known as Bertl
<mithro> Hi everyone, we (TimVideos) are just preparing for applying to GSoC - would anyone from Migen/MiSoC who is familiar with the full toolchain have time to mentor a student (probably PhD level) to do bring up of Migen/MiSoc on the miniSpartan6+ and Digilent Atlys board, plus reproducing the HDMI2USB firmware functionality using those tools?
<mithro> sb0: if you have any suggestions on who would be a good person to poke (I'm assuming you don't have the time) I'd love to chat with them
stekern has quit [Ping timeout: 265 seconds]
stekern has joined #m-labs
<rjo> sb0: what's the problem with building the bitstream?
<sb0> mithro, maybe Florent Kermarrec, if he's up to it. this will involve sdram, and he knows how to get it to work.
<sb0> rjo, it's slow, so it takes a while before the results (eg the coverage ones) are available
early has quit [Ping timeout: 252 seconds]
<rjo> i can solve that byt running bitstream, bios+runtime and unittests as a matrix in parallel.
<rjo> i think bitstream is very valuable because it tells you the timing, size, whether it fits etc.
<rjo> did you turn of the automatic building?
<sb0> a lot of the commits don't touch the bitstream...
<sb0> yes, should I leave it on?
<sb0> it doesn't do much atm as I'm mostly adding things to the GUI and other high level components that don't have unit tests
<rjo> it is not really "continuous" integration is it is not automatic ;)
<rjo> let me try doing the bitstream either in parallel (it doesn't hurt imho) or even only if there is a special flag in the commit-message.
<GitHub100> [artiq] sbourdeauducq pushed 1 new commit to master: http://git.io/bV9a
<GitHub100> artiq/master 17685d1 Sebastien Bourdeauducq: controller manager skeleton
early has joined #m-labs
<mithro> sb0: what does Florent Kermarrec go via on IRC?
<mithro> sb0: have you guys done any work for the Zybo? (Zynq based board from Digilent.)
early has quit [Ping timeout: 252 seconds]
<rjo> mithro: _florent_ here, and enjoy-digital on github
early has joined #m-labs
early has quit [Excess Flood]
<GitHub151> [artiq] jordens pushed 4 new commits to master: http://git.io/bwJR
<GitHub151> artiq/master a06164e Robert Jordens: travis.yml: build bitstream only if [soc] in commit message
<GitHub151> artiq/master 411f716 Robert Jordens: travis.yml: reduce irc noise
<GitHub151> artiq/master ef3804a Robert Jordens: travis: refactor get-misoc.sh
<rjo> sb0: the bitstream is only 10 minutes of a 13 minutes build.
travis-ci has joined #m-labs
<travis-ci> m-labs/artiq#5 (master - c97946a : Robert Jordens): The build passed.
travis-ci has left #m-labs [#m-labs]
early has joined #m-labs
early has quit [Ping timeout: 252 seconds]
early has joined #m-labs
early has quit [Ping timeout: 252 seconds]
early has joined #m-labs
sturmflut has joined #m-labs
sturmflut has quit [Ping timeout: 252 seconds]
sturmflut has joined #m-labs
fengling has joined #m-labs
early has quit [Ping timeout: 252 seconds]
wpwrak has quit [Ping timeout: 252 seconds]
bentley` has quit [Remote host closed the connection]
wpwrak has joined #m-labs
fengling has quit [Quit: WeeChat 1.0]
FabM has quit [Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805]]
sturmflut_ has joined #m-labs
sturmflut has quit [Ping timeout: 250 seconds]
sturmflut_ is now known as sturmflut
Bertl is now known as Bertl_zZ
siruf_ has joined #m-labs
sh4rm4 has quit [*.net *.split]
siruf has quit [*.net *.split]
cfelton has quit [*.net *.split]
mithro has quit [*.net *.split]
siruf_ is now known as siruf
sh4rm4 has joined #m-labs
cfelton has joined #m-labs
mithro has joined #m-labs
sturmflut has quit [Read error: Connection timed out]
sturmflut has joined #m-labs
early has joined #m-labs
early has quit [Ping timeout: 264 seconds]
sturmflut has quit [Ping timeout: 240 seconds]
sturmflut has joined #m-labs
sturmflut has quit [Read error: Connection timed out]
sturmflut has joined #m-labs
<GitHub175> [artiq] sbourdeauducq pushed 3 new commits to master: http://git.io/bo3q
<GitHub175> artiq/master f9d3bd1 Sebastien Bourdeauducq: ctlmgr: retry connection to master, print received ddb
<GitHub175> artiq/master 5cec341 Yann Sionneau: Add missing dependencies and their repositories...
<GitHub175> artiq/master 8979d9d Sebastien Bourdeauducq: Merge branch 'master' of https://github.com/m-labs/artiq
travis-ci has joined #m-labs
<travis-ci> m-labs/artiq#6 (master - 8979d9d : Sebastien Bourdeauducq): The build has errored.
travis-ci has left #m-labs [#m-labs]
<ysionneau> ah yes, the builder needs to have pygobject installed
<ysionneau> if it's a debian like system I would suggest something like sudo aptitude install python3-gi
sturmflut has quit [Read error: Connection timed out]
sturmflut has joined #m-labs
fengling has joined #m-labs
fengling has quit [Quit: WeeChat 1.0]
_florent_ has joined #m-labs
<sb0> ysionneau, can pygobject be made an optional dependency somehow? we don't need it on the master, for example
<ysionneau> I think yes
<ysionneau> maybe instead of having the is os.name == "nt": I can put something like if we_want_gui:
<ysionneau> I think setuptools has something like "optional features"
<sb0> make it so
pampuchy has joined #m-labs
<pampuchy> hi everyone
<pampuchy> i just learned about mixxeo
<pampuchy> any videos/samples?
<ysionneau> sb0: hummm setuptools does not seem to allow saying which optional feature you want from command line :/
<ysionneau> maybe it will work if one uses pip to install artiq, let me try that...
<ysionneau> sb0: ok , it seems we can do something like "pip3 install -e ." for normal (no GUI) install, and then "pip3 install -e .[GUI]" for with-GUI install . It will run setup.py ultimately but taking into accounts optional requirements
<ysionneau> sb0: the downside is, by putting GUI requirements in "extra_require", then the normal "python ./setup.py [--user] install" will not install the GUI, if this is the expected behaviour then it's OK
antgreen has joined #m-labs
_florent_ has quit [Ping timeout: 265 seconds]
_florent_ has joined #m-labs
ysionneau has quit [Ping timeout: 256 seconds]
ysionneau has joined #m-labs
sturmflut has quit [Ping timeout: 240 seconds]
sturmflut has joined #m-labs
bentley` has joined #m-labs
<GitHub62> [artiq] sbourdeauducq pushed 2 new commits to master: http://git.io/bKNd
<GitHub62> artiq/master 0d0a05a Sebastien Bourdeauducq: sync_struct/Subscriber: add before_receive_cb, export reader/writer
<GitHub62> artiq/master aba7490 Sebastien Bourdeauducq: ctlmgr: get local bind address, format commands
sturmflut has quit [Ping timeout: 240 seconds]
travis-ci has joined #m-labs
<travis-ci> m-labs/artiq#7 (master - aba7490 : Sebastien Bourdeauducq): The build has errored.
travis-ci has left #m-labs [#m-labs]
pampuchy has quit [Ping timeout: 244 seconds]
sturmflut has joined #m-labs
early has joined #m-labs
Bertl_zZ is now known as Bertl
sturmflut has quit [Remote host closed the connection]
Gurty has quit [Ping timeout: 246 seconds]
early has quit [Ping timeout: 252 seconds]
mumptai has joined #m-labs
early has joined #m-labs
early has quit [Ping timeout: 264 seconds]
early has joined #m-labs
Gurty has joined #m-labs
Gurty has joined #m-labs
early has quit [Quit: Leaving]
sh4rm4 has quit [Remote host closed the connection]
sh4rm4 has joined #m-labs
early has joined #m-labs
early has quit [Excess Flood]
_florent_ has quit [Ping timeout: 252 seconds]
early has joined #m-labs
early has quit [Excess Flood]
early has joined #m-labs
early has quit [Ping timeout: 252 seconds]
early has joined #m-labs
kmehall has quit [Remote host closed the connection]
kmehall has joined #m-labs
methril has quit [Quit: Leaving]
Bertl is now known as Bertl_oO
early has quit [Ping timeout: 252 seconds]
_florent_ has joined #m-labs
_florent_ has quit [Read error: Connection reset by peer]
sh4rm4 has quit [Remote host closed the connection]
sh4rm4 has joined #m-labs
<mithro> I think _florent_ is a new hero :P - his liteXXX cores are pretty awesome
Bertl_oO is now known as Bertl