From 770173a55dbad13bc18366b8a63ad724eae3a79a Mon Sep 17 00:00:00 2001 From: jpekkila Date: Wed, 29 Jul 2020 13:55:22 +0000 Subject: [PATCH 1/4] Limited automated build time to 5 minutes. --- bitbucket-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index bc6ac44..6fbb638 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -12,6 +12,8 @@ image: nvidia/cuda # ==> Updating the kernel drivers by ourselves probably requires creating our own docker image. # ===> Which might not even work since I don't know what kind of hardware we're running on (lspci was not available) +options: + max-time: 5 # Max time allowed for building (minutes) pipelines: # default: # Default is run at every push but we have only 500 build minutes / month so that probably wouldn't work out custom: # Manual/scheduled building only From cd888be9ec3a82a7fbe0d5f3ad3b695bda6173f7 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Wed, 29 Jul 2020 15:17:37 +0000 Subject: [PATCH 2/4] README.md edited online with Bitbucket --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 289a45f..8ac7978 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ In the base directory, run | Option | Description | Default | |--------|-------------|---------| | CMAKE_BUILD_TYPE | Selects the build type. Possible values: Debug, Release, RelWithDebInfo, MinSizeRel. See (CMake documentation)[https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html] for more details. | Release | +| CMAKE_CUDA_ARCHITECTURES | Selects the supported CUDA architectures. Multiple architectures delimited by `;`. See (CMake documentation)[https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html] for more details. | 35;37;60;70 | | DOUBLE_PRECISION | Generates double precision code. | OFF | | BUILD_SAMPLES | Builds projects in samples subdirectory. | OFF | | BUILD_STANDALONE | Builds a standalone library for testing, benchmarking and simulation. | ON | From bb821df6865373c0aa69adf974b37df148692152 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Wed, 29 Jul 2020 15:19:05 +0000 Subject: [PATCH 3/4] README.md edited online with Bitbucket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ac7978..a5c3f72 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ In the base directory, run | Option | Description | Default | |--------|-------------|---------| | CMAKE_BUILD_TYPE | Selects the build type. Possible values: Debug, Release, RelWithDebInfo, MinSizeRel. See (CMake documentation)[https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html] for more details. | Release | -| CMAKE_CUDA_ARCHITECTURES | Selects the supported CUDA architectures. Multiple architectures delimited by `;`. See (CMake documentation)[https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html] for more details. | 35;37;60;70 | +| CMAKE_CUDA_ARCHITECTURES | Selects CUDA architecture support. Multiple architectures delimited by `;`. See (CMake documentation)[https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html] for more details. | "35;37;60;70" | | DOUBLE_PRECISION | Generates double precision code. | OFF | | BUILD_SAMPLES | Builds projects in samples subdirectory. | OFF | | BUILD_STANDALONE | Builds a standalone library for testing, benchmarking and simulation. | ON | From 5e04a61cd2ebc3c46f47f0f12d0d5216337882ea Mon Sep 17 00:00:00 2001 From: jpekkila Date: Wed, 29 Jul 2020 15:43:58 +0000 Subject: [PATCH 4/4] README.md edited online with Bitbucket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5c3f72..796beec 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ In the base directory, run | Option | Description | Default | |--------|-------------|---------| | CMAKE_BUILD_TYPE | Selects the build type. Possible values: Debug, Release, RelWithDebInfo, MinSizeRel. See (CMake documentation)[https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html] for more details. | Release | -| CMAKE_CUDA_ARCHITECTURES | Selects CUDA architecture support. Multiple architectures delimited by `;`. See (CMake documentation)[https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html] for more details. | "35;37;60;70" | +| CUDA_ARCHITECTURES | Selects CUDA architecture support. Multiple architectures delimited by `;`. See (CMake documentation)[https://cmake.org/cmake/help/latest/prop_tgt/CUDA_ARCHITECTURES.html] for more details. | "60;70" | | DOUBLE_PRECISION | Generates double precision code. | OFF | | BUILD_SAMPLES | Builds projects in samples subdirectory. | OFF | | BUILD_STANDALONE | Builds a standalone library for testing, benchmarking and simulation. | ON |