Skip to content

Commit

Permalink
less sense plot
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrush committed Sep 6, 2024
1 parent 2bcbdd3 commit 2f65c50
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/libs/vtkh/DataSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -495,11 +495,6 @@ DataSet::GetGlobalRange(const std::string &field_name) const
delete[] global_components;
#endif
VTKH_DATA_CLOSE();
std::cout << "GetGlobalRange" <<std::endl;
for(int i=0;i< range.GetNumberOfValues();i++)
{
std::cout << range.ReadPortal().Get(i) << std::endl;
}
return range;
}

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/tests/ascent/t_ascent_gpu_data_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,14 +197,14 @@ TEST(ascent_gpu_data_source, test_gpu_source_contour_and_render_3d)
pipelines["pl1/f1/type"] = "contour";
conduit::Node &contour_params = pipelines["pl1/f1/params"];
contour_params["field"] = "braid";
contour_params["iso_values"] = 0.;
contour_params["iso_values"] = 0.0;

conduit::Node &add_plots = actions.append();
add_plots["action"] = "add_scenes";
conduit::Node &scenes = add_plots["scenes"];
scenes["s1/plots/p1/type"] = "pseudocolor";
scenes["s1/plots/p1/pipeline"] = "pl1";
scenes["s1/plots/p1/field"] = "braid";
scenes["s1/plots/p1/field"] = "radial";
scenes["s1/image_prefix"] = output_file;

conduit::Node &add_extracts = actions.append();
Expand Down

0 comments on commit 2f65c50

Please sign in to comment.