TheCrazyT
TheCrazyT
@Muguangfeng Well you kinda hijacked this topic, but i will answer to you. It probably depends on what version of tensorflow is installed. It sounds to me that you have...
does: `import tensorflow as tf` `print(tf.test.is_gpu_available())` also return True for you?
ok, looks like the current code does not set the gpu-device-count. See Email for more details.
So BCH_POLYNOMIAL would be 0x4377 (and BCH_BITS=2?). I wonder if "bitswapping" is needed.(I once had nand-chip where nand-dump had bhc-encoding with 0x4377, but needed bitswapping) In that case forget about...
@jkent no I'm fine with this issue for discussion.
@jkent ``` Traceback (most recent call last): File "test2.py", line 22, in bch = bchlib.BCH(ECC_BITS, poly=ECC_POLY) TypeError: 'poly' is an invalid keyword argument for this function ``` I guess its...
I guess you already made shure that no process is hanging, too? (I guess a graph with active running processes might also help) I just took a quick look through...
I'm currently looking at: https://githubmemory.com/repo/openzim/python-libzim/issues/117?page=2 Does that mean that "4. Observe that memory consumption is stable" is wrong because you still have problems? If you let the Proof of concept-script...
Talking about the sax parser ... It is probably better to execute `close` after you are done: ``` import xml.sax parser = xml.sax.make_parser() #... try: parser.close() except xml.sax.SAXException: #not shure...
It is still possible that the xml library is leaking. Atleast i created a proof of concept with a jupyter notebook: https://gist.github.com/TheCrazyT/376bb0aac2d283f9ba505b889ef5da51 Bad thing is ... I currently can't really...