Commit Graph

9447 Commits

Author SHA1 Message Date
Vicente Bolea
88773d9376 Merge branch 'release' 2021-11-22 11:51:53 -05:00
Vicente Bolea
1cb98a08ca Merge topic 'update-gbench'
b68026981 CI: use latest master GBench

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <morelandkd@ornl.gov>
Merge-request: !2631
2021-11-22 11:51:53 -05:00
Vicente Bolea
4f775db1b4 Merge topic 'update-gbench' into release
b68026981 CI: use latest master GBench

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <morelandkd@ornl.gov>
Merge-request: !2631
2021-11-22 11:51:53 -05:00
Vicente Bolea
db26d2e3ef Merge topic 'add-unity-builds'
555013cdd CMAKE: add unity builds support

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Ben Boeckel <ben.boeckel@kitware.com>
Merge-request: !2600
2021-11-22 11:10:34 -05:00
Vicente Adolfo Bolea Sanchez
b680269811 CI: use latest master GBench 2021-11-22 10:48:29 -05:00
Kenneth Moreland
87c82fdd41 Merge topic 'register-dashboard-link'
24cca4cc7 Update the link to register with the VTK-m dashboard

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Vicente Bolea <vicente.bolea@kitware.com>
Merge-request: !2629
2021-11-14 10:47:23 -05:00
Kenneth Moreland
24cca4cc7e Update the link to register with the VTK-m dashboard
The URL changed slightly.
2021-11-10 13:57:51 -07:00
Vicente Adolfo Bolea Sanchez
555013cdda CMAKE: add unity builds support 2021-11-10 15:03:11 -05:00
Gunther Weber
d974477e40 Merge topic 'add/hybrid_hypersweep'
02789a0d4 Improve comments
ed6b0f008 Fix CMakeLists.txt after moving header file.
5fd1b8ce8 Moved I/O functions to testing directory.
b6db5ddaa Make GlobalBlockId int to reduce casts. Renamed BlockIndex to LocalBlockNo.
bec58bd73 Make DIY own blocks and delete them to prevent memory leak on exception
50ca0318b Added missing ExecutionSignature.
f96020a24 Consolidated two copies of NotNoSuchElementPredicate.h
65352d7f0 Remove extranous Allocate in HierarchicalAugmenter
...

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Vicente Bolea <vicente.bolea@kitware.com>
Acked-by: Sujin Philip <sujin.philip@kitware.com>
Merge-request: !2587
2021-11-10 13:55:32 -05:00
Sujin Philip
6b81bf3355 Merge topic 'fix-ArrayGetValues'
4a37e02ff Add ArrayGetValues specilization for ArrayHandleCast

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <morelandkd@ornl.gov>
Merge-request: !2627
2021-11-10 12:10:18 -05:00
Vicente Bolea
134f0c8afe Merge topic 'fix-openmp-segfaul' into release
47ee1b247 OpenMP: fix race condition

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Nickolas Davis <nadavi@sandia.gov>
Merge-request: !2625
2021-11-08 20:56:16 -05:00
Vicente Bolea
abec2b73ac Merge branch 'release' 2021-11-08 20:56:16 -05:00
Vicente Bolea
be9ac1ef3f Merge topic 'fix-openmp-segfaul'
47ee1b247 OpenMP: fix race condition

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Nickolas Davis <nadavi@sandia.gov>
Merge-request: !2625
2021-11-08 20:56:16 -05:00
Gunther H. Weber
02789a0d4d Improve comments 2021-11-08 15:24:07 -08:00
Vicente Adolfo Bolea Sanchez
47ee1b247a OpenMP: fix race condition 2021-11-08 16:39:40 -05:00
Gunther H. Weber
ed6b0f0082 Fix CMakeLists.txt after moving header file. 2021-11-08 11:41:21 -08:00
Gunther H. Weber
5fd1b8ce87 Moved I/O functions to testing directory. 2021-11-08 11:41:15 -08:00
Sujin Philip
4a37e02ffe Add ArrayGetValues specilization for ArrayHandleCast
ArrayGetValues for ArrayHandleCast needs to be handled specially as an
`UnknownArrayHandle::IsBaseComponentType` check inside the implementation
gives unexpected results for ArrayHandleCast.

With this fix, the values are first copied from the source array type and
then casted to the appropriate type before returning.
2021-11-08 14:37:49 -05:00
Kenneth Moreland
845ca21ebc Merge topic 'unknownarrayhandle-istype-documentation'
caf6ac98e Improve documentation of UnknownArrayHandle::IsType

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Sujin Philip <sujin.philip@kitware.com>
Merge-request: !2624
2021-11-05 11:00:00 -04:00
Gunther H. Weber
b6db5ddaa6 Make GlobalBlockId int to reduce casts. Renamed BlockIndex to LocalBlockNo. 2021-11-04 20:56:12 -07:00
Gunther H. Weber
bec58bd735 Make DIY own blocks and delete them to prevent memory leak on exception 2021-11-04 17:05:09 -07:00
Kenneth Moreland
caf6ac98e8 Improve documentation of UnknownArrayHandle::IsType
Under some circumstances, `IsType` can return false for a type that
exactly matches the type used to create the `UnknownArrayHandle`.
This is because types like `ArrayHandleCast` get converted to
the array they contain. Thus, `IsType` will return false when it
is expected to be true. In most cases, you should use
`CanConvert`. The `IsType` documentation now points you there.
2021-11-04 10:59:00 -06:00
Gunther H. Weber
50ca0318b8 Added missing ExecutionSignature. 2021-11-03 17:13:43 -07:00
Gunther H. Weber
f96020a24a Consolidated two copies of NotNoSuchElementPredicate.h 2021-11-03 17:13:38 -07:00
Oliver Ruebel
65352d7f07 Remove extranous Allocate in HierarchicalAugmenter 2021-11-03 13:14:40 -07:00
Oliver Ruebel
3d5ba9968f Merge branch 'add/hybrid_hypersweep' of gitlab.kitware.com:ghweber/vtk-m into add/hybrid_hypersweep 2021-11-03 12:25:03 -07:00
Oliver Ruebel
61319f1895 Updated docstring for ResizeVector method 2021-11-03 12:24:39 -07:00
Gunther H. Weber
b28e0ac73a Removed unnecessary cast. 2021-11-03 12:20:32 -07:00
Gunther H. Weber
5fbcb4145e Removed unnecessary cast. 2021-11-03 12:03:02 -07:00
Gunther H. Weber
3d88d7f8dc Updated comment. Fixed coding style violation. 2021-11-03 11:39:40 -07:00
Cyrus Harrison
c67244f636 Merge topic 'task/2021_11_adj_opts_parser_include' into release
5c21e67d7 adjust options parser include path

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Vicente Bolea <vicente.bolea@kitware.com>
Merge-request: !2623
2021-11-02 15:56:30 -04:00
Cyrus Harrison
9fdb125553 Merge branch 'release' 2021-11-02 15:56:30 -04:00
Cyrus Harrison
30967f9585 Merge topic 'task/2021_11_adj_opts_parser_include'
5c21e67d7 adjust options parser include path

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Vicente Bolea <vicente.bolea@kitware.com>
Merge-request: !2623
2021-11-02 15:56:30 -04:00
Cyrus Harrison
5c21e67d7d adjust options parser include path 2021-11-01 11:30:10 -07:00
Ben Boeckel
d2f0f3c990 Merge topic 'cell-set-explicit-message'
1ffc33adf CellSetExplicit: reword warning message

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Vicente Bolea <vicente.bolea@kitware.com>
Merge-request: !2622
2021-11-01 14:19:47 -04:00
Kenneth Moreland
c5e83c6124 Merge topic 'reset-bounds-empty' into release
61de2faf7 Allow empty bounds in Camera::ResetToBounds

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2621
2021-11-01 13:56:33 -04:00
Kenneth Moreland
d9d657eb45 Merge branch 'release' 2021-11-01 13:56:33 -04:00
Kenneth Moreland
a5fe0ba35c Merge topic 'reset-bounds-empty'
61de2faf7 Allow empty bounds in Camera::ResetToBounds

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2621
2021-11-01 13:56:33 -04:00
Kenneth Moreland
61de2faf7e Allow empty bounds in Camera::ResetToBounds
Although it is generally wrong to try to call `ResetToBounds` with a
`Bounds` object that does not have a valid range, there are cases where
the range might not be valid. (For example, if `ResetToBounds` was
called in a routine that is rendering an empty scene, it would be best
not to crash.)
2021-11-01 11:02:17 -06:00
Ben Boeckel
1ffc33adf2 CellSetExplicit: reword warning message
ParaView ends up triggering this in its test suite and the "failure"
mention ends up triggering the "failed test" condition in its test
harness. Reword to read more like a warning than an error.
2021-11-01 12:33:41 -04:00
Li-Ta Lo
42c89be5f3 Merge topic 'mergePartitionedDataset'
1355f82a0 fix type mismatch
59364939f remove unnecessary includes and change  to device_sources
8b7f720de remove unnecessary includes
f4605302e add unit test
09db96e58 add merge partitioned dataset capability

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <morelandkd@ornl.gov>
Merge-request: !2613
2021-11-01 12:17:19 -04:00
Roxana Bujack
1355f82a0c fix type mismatch 2021-11-01 08:12:56 -06:00
Roxana Bujack
59364939f7 remove unnecessary includes and change to device_sources 2021-10-29 15:10:04 -06:00
Roxana Bujack
8b7f720de1 remove unnecessary includes 2021-10-28 15:39:42 -06:00
Roxana Bujack
f4605302ee add unit test 2021-10-28 15:36:20 -06:00
Li-Ta Lo
616d895a4e Merge topic 'ollielo-master-patch-72902'
3dc584321 Merge branch 'ollielo-master-patch-72902' of gitlab.kitware.com:ollielo/vtk-m into ollielo-master-patch-72902
674b0e5db static/anonymous namespace is not allowed in header files
dd9e5acdc static/anonymous namespace is not allowed in header files
b01ba506c Merge branch 'master' into ollielo-master-patch-72902
534fccdba update CI for no_virtual
4817ffbc9 Merge branch 'master' into ollielo-master-patch-72902
35a6b8500 Enable NO_DEPRECATED_VIRTUAL by default

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <morelandkd@ornl.gov>
Merge-request: !2605
2021-10-28 15:56:25 -04:00
Li-Ta Lo
3dc5843211 Merge branch 'ollielo-master-patch-72902' of gitlab.kitware.com:ollielo/vtk-m into ollielo-master-patch-72902 2021-10-28 11:04:03 -06:00
Li-Ta Lo
674b0e5dbc static/anonymous namespace is not allowed in header files 2021-10-28 11:02:45 -06:00
Li-Ta Lo
dd9e5acdc6 static/anonymous namespace is not allowed in header files 2021-10-28 10:54:47 -06:00
Li-Ta Lo
3547a5d804 Merge topic 'multiplexer'
f6877fb39 fixed typo for multiplexer

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Kenneth Moreland <morelandkd@ornl.gov>
Merge-request: !2618
2021-10-28 12:25:35 -04:00