- Nov 07, 2024
-
-
05166afb Simplify PointLocatorBase Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3269
-
- Nov 01, 2024
-
-
-
dc4e261d Merge branch 'ci-use-only-needs-release' into ci-use-only-needs adc84a98 gitlab-ci: remove `dependencies` from jobs Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !3277
-
adc84a98 gitlab-ci: remove `dependencies` from jobs Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !3277
-
Ben Boeckel authored
* ci-use-only-needs-release: gitlab-ci: remove `dependencies` from jobs
-
-
aa36b79e ci: remove executable permissions from `.ps1` scripts Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3276
-
aa36b79e ci: remove executable permissions from `.ps1` scripts Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3276
-
- Oct 31, 2024
-
-
Ben Boeckel authored
Historically, `needs` specifies the jobs which need to complete successfully and `dependencies` specifies the jobs which provide artifacts which should be used. Modern GitLab discourages using both as `needs` now supports an `artifacts` key to say "depend on but do not use artifacts", so remove `dependencies` and use `needs:artifacts` where necessary. See: https://docs.gitlab.com/ee/ci/yaml/#needsartifacts
-
Ben Boeckel authored
PowerShell scripts are not inherently executable and therefore should not have the executable bit set.
-
- Oct 30, 2024
-
-
-
-
8bd6ebac Fix clang compile issue with a missing tempolate arg list Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !3275
-
-
8bd6ebac Fix clang compile issue with a missing tempolate arg list Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !3275
-
8bd6ebac Fix clang compile issue with a missing tempolate arg list Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !3275
-
- Oct 25, 2024
-
-
Kenneth Moreland authored
Apparently, starting with LLVM clang version 20, if you use the `template` keyword to highlight a sub-element, you have to provide a template argument list. This is true even for a method where the template arguments can be completely determined by the types of the arguments. Fix this problem by providing an empty template arg list (so the compiler knows what is templated but still figures out its own types). Fixes #830
-
674d370b Fix clang compile issue with a missing tempolate arg list Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3274
-
Kenneth Moreland authored
Apparently, starting with LLVM clang version 20, if you use the `template` keyword to highlight a sub-element, you have to provide a template argument list. This is true even for a method where the template arguments can be completely determined by the types of the arguments. Fix this problem by providing an empty template arg list (so the compiler knows what is templated but still figures out its own types). Fixes #830
-
- Oct 24, 2024
-
-
48e385af Fix compile error for contour tree print Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Gunther Weber <ghweber@lbl.gov> Merge-request: !3271
-
- Oct 16, 2024
-
-
c805a603 Remove unused method from MIR tables Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Abhishek Yenpure <abhi.yenpure@kitware.com> Merge-request: !3272
-
- Oct 15, 2024
-
-
Kenneth Moreland authored
The implementation of this method was incorrect as it referenced a class member that does not exist. Many compilers allowed it in a templated class when the method was never used, but other compilers attempt to compile the inlined method regardless. Since the method clearly is not needed, the easy solution is to remove it.
-
Kenneth Moreland authored
A print for one of the contour tree objects was referencing members of itself that don't seem to exist. This causes the Intel compiler to fail to compile it. I'm at a loss about how any other compiler does not error out, but at any rate this should be correct.
-
- Oct 11, 2024
-
-
8bb8ec53 VTKmWrappers: allow pool size to be configured externally Acked-by:
Kitware Robot <kwrobot@kitware.com> Reviewed-by:
Vicente Bolea <vicente.bolea@kitware.com> Merge-request: !3270
-
- Oct 10, 2024
-
-
Ben Boeckel authored
-
- Oct 09, 2024
-
-
Kenneth Moreland authored
`PointLocatorBase` used to use CRTP. However, this pattern is unnecessary as the only real subclass it calls is Build, which does not need templating. The base class does not have to call the `PrepareForExecution` method, so it can provide its own features to derived classes more easily. Also moved `PointLocatorBase` out of the `internal` namespace. Although it provides little benefit other than a base class, it will make documenting its methods easier.
-
- Oct 08, 2024
-
-
c5a8de92 Simplify CellLocatorBase Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Dave Pugmire <dpugmire@gmail.com> Merge-request: !3268
-
Kenneth Moreland authored
`CellLocatorBase` used to use CRTP. However, this pattern is unnecessary as the only real subclass it calls is `Build`, which does not need templating. The base class does not have to call the `PrepareForExecution` method, so it can provide its own features to derived classes more easily. Also moved `CellLocatorBase` out of the `internal` namespace. Although it provides little benefit other than a base class, it will make documenting its methods easier.
-
- Oct 04, 2024
-
-
01054427 Add documentation for all of the DataSet methods Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3265
-
- Oct 03, 2024
-
-
Kenneth Moreland authored
-
-
33373f4b Fix deprecation warning in WorkletCellNeighborhood Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Li-Ta Lo <ollie@lanl.gov> Merge-request: !3266
-
-
33373f4b Fix deprecation warning in WorkletCellNeighborhood Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Li-Ta Lo <ollie@lanl.gov> Merge-request: !3266
-
33373f4b Fix deprecation warning in WorkletCellNeighborhood Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Li-Ta Lo <ollie@lanl.gov> Merge-request: !3266
-
- Sep 27, 2024
-
-
f5a95046 Disabled a few contour tree tests to reduce time needed 8f3e8617 Minor refactoring of tests for contour tree. 237b5ad6 Add pre-simplification for contour tree 809127ed (Bug)fix to suppress off-block regular nodes in Augmented Tree Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Gunther Weber <ghweber@lbl.gov> Merge-request: !3227
-
Gunther Weber authored
-
- Sep 26, 2024
-
-
Gunther Weber authored
-
- Sep 25, 2024
-
-
Add pre-simplification as mitigation for memory usage and scaling issues when running distributed contour tree algorithm on highly complex data sets. Co-authored-by:
Mingzhe Li <mingzhefluorite@gmail.com>
-
-