Skip to content
Merged
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion extern/aclMock/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project(

# HiCR acl Mock Backend Configuration

backendIncludes = include_directories(['.'])
backendIncludes = include_directories(['include'])

aclDependency = declare_dependency(
sources: ['acl.cpp'],
Expand Down
2 changes: 1 addition & 1 deletion include/hicr/backends/nosv/computeManager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ComputeManager : public HiCR::ComputeManager
* \param[in] executionUnit The replicable function to execute
* @return The newly created execution unit
*/
__INLINE__ std::shared_ptr<HiCR::ExecutionUnit> createExecutionUnit(const std::function<void(void *)> &executionUnit) override
__INLINE__ std::shared_ptr<HiCR::ExecutionUnit> createExecutionUnit(const replicableFc_t &executionUnit) override
{
return std::make_shared<HiCR::backend::nosv::ExecutionUnit>(executionUnit);
}
Expand Down
Loading