test_profiler.py 978 字节
Newer Older
1 2 3
import unittest
import numpy as np
import paddle.v2.fluid as fluid
D
dangqingqing 已提交
4 5
import paddle.v2.fluid.profiler as profiler
import paddle.v2.fluid.layers as layers
6
import os
D
dangqingqing 已提交
7 8


9 10 11 12 13 14 15 16 17
class TestProfiler(unittest.TestCase):
    def test_nvprof(self):
        if not fluid.core.is_compile_gpu():
            return
        epoc = 8
        dshape = [4, 3, 28, 28]
        data = layers.data(name='data', shape=[3, 28, 28], dtype='float32')
        conv = layers.conv2d(data, 20, 3, stride=[1, 1], padding=[1, 1])

D
dzhwinter 已提交
18
        place = fluid.CUDAPlace(0)
19 20 21
        exe = fluid.Executor(place)
        exe.run(fluid.default_startup_program())

22 23
        output_file = 'cuda_profiler.txt'
        with profiler.cuda_profiler(output_file, 'csv') as nvprof:
24
            for i in range(epoc):
D
dangqingqing 已提交
25
                input = np.random.random(dshape).astype('float32')
26
                exe.run(fluid.default_main_program(), feed={'data': input})
27
        os.remove(output_file)
28

D
dangqingqing 已提交
29

30 31
if __name__ == '__main__':
    unittest.main()