jjsong

Results 2 issues of jjsong

``` def _wrapFunc(func, funcFlopCompute): global cuda_sync oldFunc = func name = func.__str__ old_functions[name] = oldFunc func_name = func.__name__ def newFunc(*args, **kwds): flops, macs = funcFlopCompute(*args, **kwds) if module_flop_count: module_flop_count[-1].append((name, flops))...

In profiler_output.py file, there is a list named "time_map", The first dimension is about hidden_size, the second dimension is about batch size, the third dimension is a list containing 4...