diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49d201981e80dad662f6c4afd4afa76994b9c84a..9f0a2891a8b86ed2f0d9b264a5eaa79e066fa701 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -81,11 +81,12 @@ windows-master: - master stage: all variables: - CMAKE_ARGS: '-DWITH_OPTFLOW=TRUE' + CMAKE_ARGS: '-DWITH_OPTFLOW=TRUE -DBUILD_TESTS=FALSE' DEPLOY_DIR: 'C:/Shared/AutoDeploy' tags: - win script: - *build-windows - - set PATH=%PATH%;C:/Shared/Deploy - - ctest --output-on-failure --timeout 30 + +# - set PATH=%PATH%;C:/Shared/Deploy +# - ctest --output-on-failure --timeout 30 diff --git a/components/renderers/cpp/src/CUDARender.cpp b/components/renderers/cpp/src/CUDARender.cpp index c17fe0d523f8719007a017dc19933b72fd261d5d..0a88f5ca9f77e112a7c646d0a9eb63099624b3a6 100644 --- a/components/renderers/cpp/src/CUDARender.cpp +++ b/components/renderers/cpp/src/CUDARender.cpp @@ -611,8 +611,10 @@ void CUDARender::_end() { LOG(INFO) << "ABOUT TO COPY COLLISIONS"; cudaSafeCall(cudaMemcpyAsync(collisions_host_, collisions_, sizeof(ftl::cuda::Collision)*1024, cudaMemcpyDeviceToHost, stream_)); + LOG(INFO) << "SYNC STREAM"; cudaSafeCall(cudaStreamSynchronize(stream_)); + LOG(INFO) << "COLLISION COUNT = " << collisions_host_[0].screen; // Convert collisions into camera coordinates. collision_points_.resize(collisions_host_[0].screen); for (uint i=1; i<collisions_host_[0].screen+1; ++i) {