Index: branches/2017Q3/devel/embb/Makefile =================================================================== --- branches/2017Q3/devel/embb/Makefile (revision 446066) +++ branches/2017Q3/devel/embb/Makefile (revision 446067) @@ -1,52 +1,52 @@ # Created by: Thomas Zander # $FreeBSD$ PORTNAME= embb -PORTVERSION= 0.5.0 -PORTREVISION= 1 +PORTVERSION= 1.0.0 DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= riggs@FreeBSD.org COMMENT= C/C++ library for parallel programming LICENSE= BSD2CLAUSE BSD3CLAUSE LICENSE_COMB= multi USE_GITHUB= yes GH_ACCOUNT= siemens -USES= cmake:outsource compiler:c11 +USES= cmake:outsource compiler:c++11-lib -CMAKE_ARGS= -DINSTALL_PREFIX=${PREFIX} +CMAKE_ARGS= -DINSTALL_PREFIX=${PREFIX} \ + -DUSE_C11_AND_CXX11:BOOL=true OPTIONS_DEFINE= DOCS EXAMPLES TESTS TESTS_DESC= Build and run parallel unit tests DOCS_CMAKE_OFF= -DINSTALL_DOCS=OFF TESTS_CMAKE_OFF=-DBUILD_TESTS=OFF OPTIONS_SUB= yes -ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS= amd64 i386 .include post-patch: ${RM} ${WRKSRC}/doc/examples/CMakeLists.txt ${MV} ${WRKSRC}/doc/examples ${WRKSRC} ${REINPLACE_CMD} -e \ 's|$${INSTALL_PREFIX_DOCS} PARENT_SCOPE|"${DOCSDIR}" PARENT_SCOPE|' \ ${WRKSRC}/CMakeCommon/SetInstallPaths.cmake .if ${PORT_OPTIONS:MTESTS} post-build: (cd ${BUILD_WRKSRC}/binaries && ./run_tests.sh) .endif post-install: cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}/${EXAMPLESDIR} .include Index: branches/2017Q3/devel/embb/distinfo =================================================================== --- branches/2017Q3/devel/embb/distinfo (revision 446066) +++ branches/2017Q3/devel/embb/distinfo (revision 446067) @@ -1,3 +1,3 @@ -TIMESTAMP = 1482569662 -SHA256 (siemens-embb-v0.5.0_GH0.tar.gz) = b07589f0cd0cda04402b195c5f05f0ed739696d655cec36a1d4fa80c5e709f43 -SIZE (siemens-embb-v0.5.0_GH0.tar.gz) = 1546973 +TIMESTAMP = 1500223404 +SHA256 (siemens-embb-v1.0.0_GH0.tar.gz) = e4102561d75a089395386b9ff23deb38594bbcb9295342238d3600ef9c6a5a09 +SIZE (siemens-embb-v1.0.0_GH0.tar.gz) = 595273 Index: branches/2017Q3/devel/embb/files/patch-CMakeLists.txt =================================================================== --- branches/2017Q3/devel/embb/files/patch-CMakeLists.txt (nonexistent) +++ branches/2017Q3/devel/embb/files/patch-CMakeLists.txt (revision 446067) @@ -0,0 +1,16 @@ +--- CMakeLists.txt.orig 2017-06-19 10:16:26 UTC ++++ CMakeLists.txt +@@ -266,10 +266,10 @@ endif() + ## create cmake finder + configure_file("EMBBConfig.cmake.in" "EMBBConfig.cmake") + configure_file("UseEMBB.cmake.in" "UseEMBB.cmake") +-install(FILES "${CMAKE_BINARY_DIR}/EMBBConfig.cmake" DESTINATION "CMake") +-install(FILES "${CMAKE_BINARY_DIR}/UseEMBB.cmake" DESTINATION "CMake") ++install(FILES "${CMAKE_BINARY_DIR}/EMBBConfig.cmake" DESTINATION "lib/cmake/EMBB") ++install(FILES "${CMAKE_BINARY_DIR}/UseEMBB.cmake" DESTINATION "lib/cmake/EMBB") + install( + EXPORT EMBB-Targets +- DESTINATION "CMake" ++ DESTINATION "lib/cmake/EMBB" + FILE EMBB-Targets.cmake + ) Property changes on: branches/2017Q3/devel/embb/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2017Q3/devel/embb/pkg-plist =================================================================== --- branches/2017Q3/devel/embb/pkg-plist (revision 446066) +++ branches/2017Q3/devel/embb/pkg-plist (revision 446067) @@ -1,294 +1,217 @@ include/embb/algorithms/algorithms.h include/embb/algorithms/count.h include/embb/algorithms/for_each.h include/embb/algorithms/identity.h +include/embb/algorithms/internal/comparison_job_functor.h include/embb/algorithms/internal/count-inl.h include/embb/algorithms/internal/for_each-inl.h +include/embb/algorithms/internal/foreach_job_functor.h +include/embb/algorithms/internal/int_iterator.h include/embb/algorithms/internal/merge_sort-inl.h include/embb/algorithms/internal/partition-inl.h include/embb/algorithms/internal/partition.h +include/embb/algorithms/internal/predicate_job_functor.h include/embb/algorithms/internal/quick_sort-inl.h include/embb/algorithms/internal/reduce-inl.h +include/embb/algorithms/internal/reduce_job_functor.h include/embb/algorithms/internal/scan-inl.h +include/embb/algorithms/internal/scan_job_functor.h +include/embb/algorithms/internal/transformation_job_functor.h include/embb/algorithms/invoke.h include/embb/algorithms/merge_sort.h include/embb/algorithms/quick_sort.h include/embb/algorithms/reduce.h include/embb/algorithms/scan.h include/embb/algorithms/zip_iterator.h include/embb/base/atomic.h include/embb/base/base.h include/embb/base/c/atomic.h include/embb/base/c/base.h include/embb/base/c/condition_variable.h include/embb/base/c/core_set.h include/embb/base/c/counter.h include/embb/base/c/duration.h include/embb/base/c/errors.h include/embb/base/c/internal/atomic/and_assign.h +include/embb/base/c/internal/atomic/atomic.h include/embb/base/c/internal/atomic/atomic_sizes.h -include/embb/base/c/internal/atomic/atomic_variables.h include/embb/base/c/internal/atomic/compare_and_swap.h -include/embb/base/c/internal/atomic/destroy.h include/embb/base/c/internal/atomic/fetch_and_add.h -include/embb/base/c/internal/atomic/generate_atomic_implementation_template.h -include/embb/base/c/internal/atomic/init.h include/embb/base/c/internal/atomic/load.h -include/embb/base/c/internal/atomic/memory_barrier.h include/embb/base/c/internal/atomic/or_assign.h include/embb/base/c/internal/atomic/store.h include/embb/base/c/internal/atomic/swap.h include/embb/base/c/internal/atomic/xor_assign.h include/embb/base/c/internal/bitset.h include/embb/base/c/internal/cmake_config.h include/embb/base/c/internal/config.h include/embb/base/c/internal/macro_helper.h include/embb/base/c/internal/platform.h include/embb/base/c/internal/thread_index.h include/embb/base/c/internal/unused.h include/embb/base/c/log.h include/embb/base/c/memory_allocation.h include/embb/base/c/mutex.h include/embb/base/c/thread.h include/embb/base/c/thread_specific_storage.h include/embb/base/c/time.h include/embb/base/condition_variable.h include/embb/base/core_set.h include/embb/base/duration.h include/embb/base/exceptions.h include/embb/base/function.h include/embb/base/internal/atomic/atomic_arithmetic.h include/embb/base/internal/atomic/atomic_base.h include/embb/base/internal/atomic/atomic_implementation.h include/embb/base/internal/atomic/atomic_integer.h include/embb/base/internal/atomic/atomic_pointer.h include/embb/base/internal/atomic/atomic_utility.h include/embb/base/internal/cmake_config.h include/embb/base/internal/condition_variable-inl.h include/embb/base/internal/config.h include/embb/base/internal/duration-inl.h include/embb/base/internal/function0.h include/embb/base/internal/function1.h include/embb/base/internal/function2.h include/embb/base/internal/function3.h include/embb/base/internal/function4.h include/embb/base/internal/function5.h include/embb/base/internal/functionT.h include/embb/base/internal/memory_allocation-inl.h include/embb/base/internal/mutex-inl.h include/embb/base/internal/nil.h include/embb/base/internal/platform.h include/embb/base/internal/thread-inl.h include/embb/base/internal/thread_closures.h include/embb/base/internal/thread_specific_storage-inl.h include/embb/base/log.h include/embb/base/memory_allocation.h include/embb/base/mutex.h include/embb/base/thread.h include/embb/base/thread_specific_storage.h include/embb/base/time.h include/embb/containers/containers.h include/embb/containers/internal/hazard_pointer-inl.h include/embb/containers/internal/hazard_pointer.h include/embb/containers/internal/lock_free_mpmc_queue-inl.h include/embb/containers/internal/lock_free_stack-inl.h include/embb/containers/internal/lock_free_tree_value_pool-inl.h include/embb/containers/internal/object_pool-inl.h include/embb/containers/internal/wait_free_array_value_pool-inl.h include/embb/containers/internal/wait_free_spsc_queue-inl.h include/embb/containers/lock_free_mpmc_queue.h include/embb/containers/lock_free_stack.h include/embb/containers/lock_free_tree_value_pool.h include/embb/containers/object_pool.h include/embb/containers/wait_free_array_value_pool.h include/embb/containers/wait_free_spsc_queue.h include/embb/dataflow/dataflow.h include/embb/dataflow/internal/action.h include/embb/dataflow/internal/clock_listener.h include/embb/dataflow/internal/constant_source.h include/embb/dataflow/internal/in.h include/embb/dataflow/internal/inputs.h include/embb/dataflow/internal/node.h include/embb/dataflow/internal/out.h include/embb/dataflow/internal/outputs.h include/embb/dataflow/internal/process.h include/embb/dataflow/internal/process_executor.h include/embb/dataflow/internal/scheduler.h include/embb/dataflow/internal/scheduler_mtapi.h include/embb/dataflow/internal/scheduler_sequential.h include/embb/dataflow/internal/select.h include/embb/dataflow/internal/signal.h include/embb/dataflow/internal/sink.h include/embb/dataflow/internal/sink_executor.h include/embb/dataflow/internal/source.h include/embb/dataflow/internal/source_executor.h include/embb/dataflow/internal/switch.h include/embb/dataflow/internal/tuple.h include/embb/dataflow/internal/typelist.h include/embb/dataflow/network.h include/embb/mtapi/action.h include/embb/mtapi/action_attributes.h include/embb/mtapi/affinity.h include/embb/mtapi/c/mtapi.h include/embb/mtapi/c/mtapi_ext.h include/embb/mtapi/c/mtapi_network.h include/embb/mtapi/execution_policy.h include/embb/mtapi/group.h include/embb/mtapi/group_attributes.h include/embb/mtapi/internal/check_status.h include/embb/mtapi/internal/cmake_config.h include/embb/mtapi/job.h include/embb/mtapi/mtapi.h include/embb/mtapi/node.h include/embb/mtapi/node_attributes.h include/embb/mtapi/queue.h include/embb/mtapi/queue_attributes.h include/embb/mtapi/status_exception.h include/embb/mtapi/task.h include/embb/mtapi/task_attributes.h include/embb/mtapi/task_context.h include/mtapi.h include/mtapi_ext.h +lib/cmake/EMBB/EMBB-Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/EMBB/EMBB-Targets.cmake +lib/cmake/EMBB/EMBBConfig.cmake +lib/cmake/EMBB/UseEMBB.cmake lib/libembb_algorithms_cpp.a lib/libembb_base_c.a lib/libembb_base_cpp.a lib/libembb_containers_cpp.a lib/libembb_dataflow_cpp.a lib/libembb_mtapi_c.a lib/libembb_mtapi_cpp.a lib/libembb_mtapi_network_c.a -%%DOCS%%%%DOCSDIR%%/images/embb.jpg -%%DOCS%%%%DOCSDIR%%/images/embb.pdf -%%DOCS%%%%DOCSDIR%%/images/embb.png -%%DOCS%%%%DOCSDIR%%/images/embb.pptx -%%DOCS%%%%DOCSDIR%%/reference/Doxyfile.in -%%DOCS%%%%DOCSDIR%%/reference/DoxygenHTMLStyle.css -%%DOCS%%%%DOCSDIR%%/reference/DoxygenLayout.xml -%%DOCS%%%%DOCSDIR%%/reference/embb.dox -%%DOCS%%%%DOCSDIR%%/reference/index.html -%%DOCS%%%%DOCSDIR%%/tutorial/content/algorithms.tex -%%DOCS%%%%DOCSDIR%%/tutorial/content/containers.tex -%%DOCS%%%%DOCSDIR%%/tutorial/content/dataflow.tex -%%DOCS%%%%DOCSDIR%%/tutorial/content/introduction.tex -%%DOCS%%%%DOCSDIR%%/tutorial/content/mtapi.tex -%%DOCS%%%%DOCSDIR%%/tutorial/content/preface.tex -%%DOCS%%%%DOCSDIR%%/tutorial/customize.tex -%%DOCS%%%%DOCSDIR%%/tutorial/pics/chicago-square.jpg -%%DOCS%%%%DOCSDIR%%/tutorial/pics/cover/logo_multicore_expert-center_siemens.png -%%DOCS%%%%DOCSDIR%%/tutorial/pics/cover/sie_logo_layer_petrol_rgb.png -%%DOCS%%%%DOCSDIR%%/tutorial/references.bib -%%DOCS%%%%DOCSDIR%%/tutorial/sty/README.txt -%%DOCS%%%%DOCSDIR%%/tutorial/sty/siemens_core.sty -%%DOCS%%%%DOCSDIR%%/tutorial/sty/siemens_double.sty -%%DOCS%%%%DOCSDIR%%/tutorial/sty/siemens_single.sty -%%DOCS%%%%DOCSDIR%%/tutorial/tutorial.tex -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/count-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/count_if-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/counting-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/setup-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/doubling-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/doubling_zip-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/for_each-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/setup_zip-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/invocation-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/invoke-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/packages-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/parallel_quick_sort-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/quick_sort-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/dot_product-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/parallel-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/range_init-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/reduce-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/second_range_init-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/sequential-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/prefix_sum-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/scan-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/sequential_prefix_sum-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/setup-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/merge_sort_preallocated-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/quick_sort-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/quick_sort_custom_compare-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/range_define-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/sorting-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool_2-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/queues-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/queues-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/stack-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/stack-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_comparator-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_connect-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_consumer-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_add_sources-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_replace-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_sink-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_source-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_include-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_linear-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_make-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_network-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_nonlinear-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_producer-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_replace_function-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_run-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_sink_function-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_source_function-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/insert_snippets.py +%%PORTDOCS%%%%DOCSDIR%%/images/embb.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/embb.pdf +%%PORTDOCS%%%%DOCSDIR%%/images/embb.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Doxyfile.in +%%PORTDOCS%%%%DOCSDIR%%/reference/DoxygenHTMLStyle.css +%%PORTDOCS%%%%DOCSDIR%%/reference/DoxygenLayout.xml +%%PORTDOCS%%%%DOCSDIR%%/reference/embb.dox +%%PORTDOCS%%%%DOCSDIR%%/reference/index.html +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/README.md +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/include/ffmpeg.h +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/include/filters.h +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/include/frame_format_converter.h +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/include/input_video_handler.h +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/include/output_video_builder.h +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/main.cc +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/src/filters.cc +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/src/frame_format_converter.cc +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/src/input_video_handler.cc +%%PORTDOCS%%%%DOCSDIR%%/tutorial/application/src/output_video_builder.cc +%%PORTDOCS%%%%DOCSDIR%%/tutorial/bake_tutorial.py +%%PORTDOCS%%%%DOCSDIR%%/tutorial/md_fig_comparator.png +%%PORTDOCS%%%%DOCSDIR%%/tutorial/md_fig_embb.png +%%PORTDOCS%%%%DOCSDIR%%/tutorial/md_fig_example_comparator.png +%%PORTDOCS%%%%DOCSDIR%%/tutorial/md_fig_linearization.png +%%PORTDOCS%%%%DOCSDIR%%/tutorial/md_fig_replace_par.png +%%PORTDOCS%%%%DOCSDIR%%/tutorial/md_fig_sorting_network.png +%%PORTDOCS%%%%DOCSDIR%%/tutorial/pandoc.css +%%PORTDOCS%%%%DOCSDIR%%/tutorial/tutorial.yml +%%PORTDOCS%%%%DOCSDIR%%/tutorial/tutorial_raw.md +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/heterogeneous.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/queues.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/containers/stack.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_heterogeneous.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_linear.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_nonlinear.cc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/main.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_action_signature-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_calc_direct-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_calc_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_domain_node_id-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_finalize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_initialize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_network-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_opencl-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_action_create-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_action_finalize_cb-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_get_job-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_task_cancel_cb-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_task_schedule-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_task_start-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin_task_start_cb-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_register_action-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_start_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_validate_arguments-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_validate_result_buffer-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_wait_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_check_status-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp-fragmented.cc -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_calc_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_domain_node_id-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_finalize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_get_node-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_initialize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_main-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_register_action-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_simple_action_signature-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_simple_start_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_start_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_wait_task-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_network_c_action_function-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_network_c_header-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_network_c_local_action_create-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_network_c_plugin_finalize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_network_c_plugin_initialize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_network_c_remote_action_create-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_opencl_c_action_create-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_opencl_c_header-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_opencl_c_kernel-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_opencl_c_plugin_finalize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_opencl_c_plugin_initialize-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_terminating_condition-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_write_back-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/function-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/function_define-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/functor-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/functor_define-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/lambda-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/manual-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/setup-snippet.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/stl_for_each-fragmented.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_cuda.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_cuda_kernel.cu +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_network.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_opencl.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_plugin.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp.cc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/stl_for_each.cc Index: branches/2017Q3 =================================================================== --- branches/2017Q3 (revision 446066) +++ branches/2017Q3 (revision 446067) Property changes on: branches/2017Q3 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r446042