@@ -32,6 +32,11 @@ image_pip_list:
32
32
e2e_neuro_push :
33
33
neuro push $(IMAGE_NAME ) :built $(TEST_IMAGE )
34
34
35
+
36
+ .PHONY : test_e2e
37
+ test_e2e : test_e2e_pytorch test_e2e_tensorflow test_e2e_apex_gpu_small test_e2e_apex_gpu_large test_e2e_dependencies
38
+ @echo " e2e tests succeeded!"
39
+
35
40
TEST_PRESET =cpu-small
36
41
TEST_CMD =
37
42
.PHONY : _test_e2e
@@ -46,14 +51,25 @@ _test_e2e:
46
51
47
52
.PHONY : test_e2e_pytorch
48
53
test_e2e_pytorch : TEST_CMD=python /var/storage/gpu_pytorch.py
49
- test_e2e_pytorch : TEST_PRESET=gpu-small
54
+ test_e2e_pytorch : TEST_PRESET=gpu-small-p
50
55
test_e2e_pytorch : _test_e2e
51
56
52
57
.PHONY : test_e2e_tensorflow
53
58
test_e2e_tensorflow : TEST_CMD=python /var/storage/gpu_tensorflow.py
54
- test_e2e_tensorflow : TEST_PRESET=gpu-small
59
+ test_e2e_tensorflow : TEST_PRESET=gpu-small-p
55
60
test_e2e_tensorflow : _test_e2e
56
61
62
+ .PHONY : test_e2e_apex_gpu_small
63
+ test_e2e_apex_gpu_small : TEST_CMD=python /var/storage/gpu_apex.py
64
+ test_e2e_apex_gpu_small : TEST_PRESET=gpu-small-p
65
+ test_e2e_apex_gpu_small : _test_e2e
66
+ test_e2e_tensorflow : _test_e2e
67
+
68
+ .PHONY : test_e2e_apex_gpu_large
69
+ test_e2e_apex_gpu_large : TEST_CMD=python /var/storage/gpu_apex.py
70
+ test_e2e_apex_gpu_large : TEST_PRESET=gpu-large-p
71
+ test_e2e_apex_gpu_large : _test_e2e
72
+
57
73
.PHONY : test_e2e_dependencies
58
74
test_e2e_dependencies : TEST_CMD=bash /var/storage/dependencies.sh
59
75
test_e2e_dependencies : _test_e2e
0 commit comments