@@ -45,9 +45,6 @@ void create_matrix(
4545    const  tiledb::Context& ctx,
4646    const  Matrix<T, LayoutPolicy, I>& A,
4747    const  std::string& uri) {
48-   if  (global_debug) {
49-     std::cerr << " # Creating Matrix: "   << uri << std::endl;
50-   }
5148
5249  //  @todo: make this a parameter
5350  size_t  num_parts = 10 ;
@@ -86,9 +83,6 @@ void write_matrix(
8683    size_t  start_pos = 0 ,
8784    bool  create = true ) {
8885  scoped_timer _{tdb_func__ + "  "   + std::string{uri}};
89-   if  (global_debug) {
90-     std::cerr << " # Writing Matrix: "   << uri << std::endl;
91-   }
9286
9387  if  (create) {
9488    create_matrix<T, LayoutPolicy, I>(ctx, A, uri);
@@ -124,9 +118,6 @@ void write_matrix(
124118template  <class  T >
125119void  create_vector (
126120    const  tiledb::Context& ctx, std::vector<T>& v, const  std::string& uri) {
127-   if  (global_debug) {
128-     std::cerr << " # Creating std::vector: "   << uri << std::endl;
129-   }
130121
131122  size_t  num_parts = 10 ;
132123  size_t  tile_extent = (size (v) + num_parts - 1 ) / num_parts;
@@ -156,10 +147,6 @@ void write_vector(
156147    bool  create = true ) {
157148  scoped_timer _{tdb_func__ + "  "   + std::string{uri}};
158149
159-   if  (global_debug) {
160-     std::cerr << " # Writing std::vector: "   << uri << std::endl;
161-   }
162- 
163150  if  (create) {
164151    create_vector<T>(ctx, v, uri);
165152  }
@@ -197,10 +184,6 @@ std::vector<T> read_vector(
197184    size_t  end_pos = 0 ) {
198185  scoped_timer _{tdb_func__ + "  "   + std::string{uri}};
199186
200-   if  (global_debug) {
201-     std::cerr << " # Reading std::vector: "   << uri << std::endl;
202-   }
203- 
204187  tiledb::Array array_ =
205188      tiledb_helpers::open_array (tdb_func__, ctx, uri, TILEDB_READ);
206189  auto  schema_ = array_.schema ();
0 commit comments