aguspiza

Results 6 comments of aguspiza

You need plenty of GPU RAM to train this models, furthermore, 16x Nvidia Tesla V100 32GB GPU needed 4 days to train this with small data... a 1060 may take...

You are converting from python to codon a list of 100000 elements (test_data) one by one. Better do the entire loop in codon

> > You are converting from python to codon a list of 100000 elements (test_data) one by one. Better do the entire loop in codon > > I just want...

After doing some more tests, even this will be slower as it needs to start the JIT: ``` @codon.jit def do_nothing(): return 1 # 测试JIT版本 start_time = time.time() do_nothing() jit_time...

That will not help either, as this test is doing lots of allocations and codon is not optimized for that as well as python is. My tests show that you...

Weird, I have run your code (removing the import codon and the @codon.jit) directly with codon and I do not see any improvements.