Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
142cdd0
Save state post resolving conpilation bug :(
emily-howell Feb 5, 2026
f118307
Removing slide verify_params
emily-howell Feb 5, 2026
736daf9
Adding some more json schema examples
emily-howell Feb 24, 2026
f6a94d2
Adding a schema validator for flow filters
emily-howell Feb 25, 2026
6d5d6e1
Translating all filters in ascent_runtime_vtkh_filters to json schema…
emily-howell Feb 27, 2026
0e05a88
Merge branch 'develop' of github.com:Alpine-DAV/ascent into task/2_3_…
emily-howell Feb 28, 2026
96efc0e
Removing temporary helpers and cleaning up files
emily-howell Feb 28, 2026
d95a906
Seed should be seeds
emily-howell Mar 3, 2026
69a3cbf
adding a detail namespace to validator
emily-howell Mar 3, 2026
6bbaed1
Converting over the expression filters
emily-howell Mar 5, 2026
5116d52
converting another file
emily-howell Mar 5, 2026
47f6376
Trying to add some support for expressions again
emily-howell Mar 5, 2026
ddc3b89
Adding a way to pass our expression validator into the flow filter
emily-howell Mar 12, 2026
d068b1a
We have a valid expression checker!
emily-howell Mar 12, 2026
3661bed
Integrating the expression checking into the vtkh number schemas :)
emily-howell Mar 12, 2026
ce5e626
Taking a pass at trying to get the JIT tests to pass
emily-howell Mar 13, 2026
fc14616
Require that either field or topology be given for a threshold filter
emily-howell Mar 17, 2026
7208c66
Merge branch 'develop' of github.com:Alpine-DAV/ascent into task/2_3_…
emily-howell Mar 17, 2026
d4b004b
Merge branch 'develop' of github.com:Alpine-DAV/ascent into task/2_3_…
emily-howell Mar 27, 2026
1d51baf
Fixing reflect filter
emily-howell Mar 27, 2026
f06051b
Fixing spelling error
emily-howell Apr 2, 2026
1d2c3d9
Using refs to nodes instead of copying seperate nodes into tree
emily-howell Apr 3, 2026
1e109b9
Generalizing the expression checking to any format checking
emily-howell Apr 3, 2026
95cd1f1
Applied formatting fixes
emily-howell Apr 3, 2026
0699c49
Merge branch 'develop' of github.com:Alpine-DAV/ascent into task/2_3_…
emily-howell Apr 3, 2026
8f34331
Removing print statement added for debugging
emily-howell Apr 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/libs/ascent/ascent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include <runtimes/ascent_main_runtime.hpp>
#include <utils/ascent_string_utils.hpp>
#include <flow.hpp>
#include <flow_schema_validator.hpp>
#include <flow_filters/ascent_runtime_param_check.hpp>

#include <conduit_fmt/conduit_fmt.h>

Expand Down Expand Up @@ -649,6 +651,9 @@ Ascent::open(const conduit::Node &options)

m_runtime->Initialize(m_options);

// Set the flow filter expression checker:
runtime::filters::ascent_register_flow_schema_hooks();
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We only need init this once, but the cost isn't high so I am ok with keeping this


// don't print info messages unless we are using verbose
// Runtimes may set their own handlers in initialize, so
// make sure to do this after.
Expand Down
Loading