Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions include/graphblas/base/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

#include <assert.h>
#include <unistd.h> //sysconf
#include <cstdint> // for uintptr_t

#include <graphblas/backends.hpp>

Expand Down
4 changes: 2 additions & 2 deletions include/graphblas/bsp1d/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1351,8 +1351,8 @@ namespace grb {
// a pipeline depth of 2 is sufficient.
constexpr size_t iteration_overlaps = 2;

const std::unique_ptr< size_t > first_nnz_per_thread(
new size_t[ num_threads * iteration_overlaps ]()
const std::unique_ptr< size_t[] > first_nnz_per_thread(
new size_t[ num_threads * iteration_overlaps ]
);
size_t * const first_nnz_per_thread_ptr = first_nnz_per_thread.get();
outgoing.resize( data.P );
Expand Down
1 change: 1 addition & 0 deletions include/graphblas/hyperdags/hyperdags.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include <ostream>
#include <iostream>
#include <type_traits>
#include <cstdint>

#include <assert.h>

Expand Down
1 change: 1 addition & 0 deletions include/graphblas/reference/coordinates.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#include <stddef.h> //size_t

#include <cstdint>
#include <stdexcept> //std::runtime_error

#include <assert.h>
Expand Down
1 change: 1 addition & 0 deletions include/graphblas/reference/init.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#define _H_GRB_REFERENCE_INIT

#include <new>
#include <cstdint>
#include <algorithm>

#include <graphblas/base/init.hpp>
Expand Down
1 change: 1 addition & 0 deletions tests/unit/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <map>
#include <sstream>
#include <stdexcept>
#include <cstdint>

#include "graphblas/synchronizedNonzeroIterator.hpp"

Expand Down