Date: Sun, 16 Jul 2017 18:15:47 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446042 - in head/devel/embb: . files Message-ID: <201707161815.v6GIFlb9088229@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: riggs Date: Sun Jul 16 18:15:47 2017 New Revision: 446042 URL: https://svnweb.freebsd.org/changeset/ports/446042 Log: Update to upstream release 1.0.0 MFH: 2017Q3 Added: head/devel/embb/files/ head/devel/embb/files/patch-CMakeLists.txt (contents, props changed) Modified: head/devel/embb/Makefile head/devel/embb/distinfo head/devel/embb/pkg-plist Modified: head/devel/embb/Makefile ============================================================================== --- head/devel/embb/Makefile Sun Jul 16 18:06:45 2017 (r446041) +++ head/devel/embb/Makefile Sun Jul 16 18:15:47 2017 (r446042) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= embb -PORTVERSION= 0.5.0 -PORTREVISION= 1 +PORTVERSION= 1.0.0 DISTVERSIONPREFIX= v CATEGORIES= devel @@ -16,9 +15,10 @@ 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 @@ -30,7 +30,7 @@ TESTS_CMAKE_OFF=-DBUILD_TESTS=OFF OPTIONS_SUB= yes -ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS= amd64 i386 .include <bsd.port.options.mk> Modified: head/devel/embb/distinfo ============================================================================== --- head/devel/embb/distinfo Sun Jul 16 18:06:45 2017 (r446041) +++ head/devel/embb/distinfo Sun Jul 16 18:15:47 2017 (r446042) @@ -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 Added: head/devel/embb/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/embb/files/patch-CMakeLists.txt Sun Jul 16 18:15:47 2017 (r446042) @@ -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 + ) Modified: head/devel/embb/pkg-plist ============================================================================== --- head/devel/embb/pkg-plist Sun Jul 16 18:06:45 2017 (r446041) +++ head/devel/embb/pkg-plist Sun Jul 16 18:15:47 2017 (r446042) @@ -2,14 +2,21 @@ 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 @@ -26,15 +33,11 @@ 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 @@ -149,6 +152,10 @@ 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 @@ -157,138 +164,54 @@ 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707161815.v6GIFlb9088229>