diff options
author | pommicket <leonardomtenenbaum@gmail.com> | 2015-09-12 15:05:00 -0400 |
---|---|---|
committer | pommicket <leonardomtenenbaum@gmail.com> | 2015-09-12 15:05:00 -0400 |
commit | c53150c701151e23e49d5c5cd5c49f8a9cf8df86 (patch) | |
tree | 108a4336e2bae2c123b7a6a327b621acb55a6062 | |
parent | c7c68f599eb45bfeed5dc8d6319e1cf90d1a4408 (diff) |
Added option to choose platform
-rw-r--r-- | AutoAudioGPU.py | 3 | ||||
-rw-r--r-- | AutoImagesGPU.py | 3 | ||||
-rw-r--r-- | AutoVideosGPU.py | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/AutoAudioGPU.py b/AutoAudioGPU.py index 9c850bf..6ddb82a 100644 --- a/AutoAudioGPU.py +++ b/AutoAudioGPU.py @@ -1,4 +1,7 @@ import GPU + +#GPU.platform_id = -1 #Remove the # at the start of the line to choose platform + import numpy as np import random try: diff --git a/AutoImagesGPU.py b/AutoImagesGPU.py index c88e127..e70051c 100644 --- a/AutoImagesGPU.py +++ b/AutoImagesGPU.py @@ -1,4 +1,7 @@ import GPU + +#GPU.platform_id = -1 #Remove the # at the start of the line to choose platform + import numpy as np import random try: diff --git a/AutoVideosGPU.py b/AutoVideosGPU.py index 2719a9b..3ed13c2 100644 --- a/AutoVideosGPU.py +++ b/AutoVideosGPU.py @@ -1,4 +1,7 @@ import GPU + +#GPU.platform_id = -1 #Remove the # at the start of the line to choose platform + import numpy as np import random import cv2 |