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

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

14 15 16 17
  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)
  set_tests_properties(test_save_load_ipu PROPERTIES TIMEOUT 600)
18
endif()