Skip to content

Commit

Permalink
minor format fixs
Browse files Browse the repository at this point in the history
  • Loading branch information
yxlao committed May 7, 2022
1 parent 38890b5 commit d3fe147
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cpp/open3d/core/SYCLUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int SYCLDemo() {
// Execute kernel.
cgh.parallel_for<class FillBuffer>(
num_workloads, [=](cl::sycl::id<1> WIid) {
// Fill buffer with indexes
// Fill buffer with indexes.
accessor[WIid] = (cl::sycl::cl_int)WIid.get(0);
});
});
Expand Down
6 changes: 3 additions & 3 deletions docker/docker_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,16 +128,16 @@ cpp_python_linking_uninstall_test() {

# C++ test
echo "gtest is randomized, add --gtest_random_seed=SEED to repeat the test sequence."
${docker_run} -i --rm ${DOCKER_TAG} /bin/bash -c "\
${docker_run} -i --rm ${DOCKER_TAG} /bin/bash -c " \
cd build \
&& ./bin/tests --gtest_shuffle --gtest_filter=-*Reduce*Sum* \
"
restart_docker_daemon_if_on_gcloud

# Python test
echo "pytest is randomized, add --randomly-seed=SEED to repeat the test sequence."
${docker_run} -i --rm "${DOCKER_TAG}" /bin/bash -c "\
python -m pytest python/test ${pytest_args} -s
${docker_run} -i --rm "${DOCKER_TAG}" /bin/bash -c " \
python -m pytest python/test ${pytest_args} -s \
"
restart_docker_daemon_if_on_gcloud

Expand Down

0 comments on commit d3fe147

Please sign in to comment.