Skip to content

Commit

Permalink
#34 Added file docstrings to the general implementations.
Browse files Browse the repository at this point in the history
  • Loading branch information
carljohnsen committed Sep 16, 2024
1 parent b67ee13 commit 1139ca4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/lib/cpp/cpu/general.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* @file general.cc
* @author Carl-Johannes Johnsen ([email protected])
* @brief Generic functions that can be used in a variety of contexts. Mostly parallel implementations of common numpy / scipy functions.
* @version 0.1
* @date 2024-09-16
*
* @copyright Copyright (c) 2024
*/
#include "general.hh"

// Header only library so far.
9 changes: 9 additions & 0 deletions src/lib/cpp/cpu_seq/general.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* @file general.cc
* @author Carl-Johannes Johnsen ([email protected])
* @brief Generic functions that can be used in a variety of contexts. Mostly parallel implementations of common numpy / scipy functions.
* @version 0.1
* @date 2024-09-16
*
* @copyright Copyright (c) 2024
*/
#include "general.hh"

// Header only library so far.
9 changes: 9 additions & 0 deletions src/lib/cpp/gpu/general.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/**
* @file general.cc
* @author Carl-Johannes Johnsen ([email protected])
* @brief Generic functions that can be used in a variety of contexts. Mostly parallel implementations of common numpy / scipy functions.
* @version 0.1
* @date 2024-09-16
*
* @copyright Copyright (c) 2024
*/
#include "general.hh"

// Header only library so far.

0 comments on commit 1139ca4

Please sign in to comment.