-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from NiftyPET/devel
next release: v2.1.0
- Loading branch information
Showing
20 changed files
with
564 additions
and
404 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,5 @@ MANIFEST | |
/*.egg*/ | ||
/.eggs/ | ||
|
||
/.coverage | ||
/.coverage* | ||
/coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"title": "NIMPA: High-throughput neuroimage processing and analysis", | ||
"keywords": ["PET", "MR", "processing", "analysis", "GPU"], | ||
"related_identifiers": [ | ||
{"identifier": "10.1007/s12021-017-9352-y", "relation": "documents"}, | ||
{"identifier": "10.1088/0031-9155/61/13/N322", "relation": "documents"}], | ||
"creators": [ | ||
{"name": "Markiewicz, Pawel J.", "orcid": "0000-0002-3114-0773", | ||
"affiliation": "University College London"}, | ||
{"name": "da Costa-Luis, Casper O.", "orcid": "0000-0002-7211-1557", | ||
"affiliation": "King's College London, University College London"}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef _CU_HELPERS_ | ||
#define _CU_HELPERS_ | ||
|
||
void HandleError(cudaError_t err, const char *file, int line); | ||
#define HANDLE_ERROR(err) (HandleError(err, __FILE__, __LINE__)) | ||
|
||
bool PyHandleError(cudaError_t err, const char *file, int line); | ||
#define HANDLE_PyErr(err) (PyHandleError(err, __FILE__, __LINE__)) | ||
|
||
#endif // _CU_HELPERS_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.