CMakeLists.txt 646 字节
Newer Older
1 2 3 4 5 6
if(WITH_IPU)
    file(GLOB TEST_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "test_*.py")
    string(REPLACE ".py" "" TEST_OPS "${TEST_OPS}")

    foreach(TEST_OP ${TEST_OPS})
        py_test_modules(${TEST_OP} MODULES ${TEST_OP})
7 8
        # set all UTs timeout to 200s
        set_tests_properties(${TEST_OP} PROPERTIES TIMEOUT 200)    
9
    endforeach(TEST_OP)
10 11 12 13

    set_tests_properties(test_conv_op_ipu PROPERTIES TIMEOUT 300)
    set_tests_properties(test_elemetwise_x_op_ipu PROPERTIES TIMEOUT 300)
    set_tests_properties(test_reduce_x_op_ipu PROPERTIES TIMEOUT 600)
A
Allen Guo 已提交
14
    set_tests_properties(test_save_load_ipu PROPERTIES TIMEOUT 600)
15
endif()