Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anatomical priors #257

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion Common/CUDA/POCS_TV2.cu → Common/CUDA/GD_AwTV.cu
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#define MAXTHREADS 1024
#define MAX_BUFFER 60

#include "POCS_TV.hpp"
#include "GD_AwTV.hpp"



Expand Down
4 changes: 2 additions & 2 deletions Common/CUDA/POCS_TV2.hpp → Common/CUDA/GD_AwTV.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ Codes : https://github.com/CERN/TIGRE



#ifndef POCS_TV_HPP
#define POCS_TV_HPP
#ifndef GD_AwTV_HPP
#define GD_AwTV_HPP
#include "TIGRE_common.hpp"
#include "GpuIds.hpp"

Expand Down
2 changes: 1 addition & 1 deletion Common/CUDA/POCS_TV.cu → Common/CUDA/GD_TV.cu
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
#define MAXTHREADS 1024
#define MAX_BUFFER 60

#include "POCS_TV.hpp"
#include "GD_TV.hpp"
#include "gpuUtils.hpp"


Expand Down
120 changes: 60 additions & 60 deletions Common/CUDA/POCS_TV.hpp → Common/CUDA/GD_TV.hpp
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
/*-------------------------------------------------------------------------
*
* Header for CUDA functions for Steepest descend in POCS-type algorithms.
*
* This file has the required headers for POCS_TV.cu
*
* CODE by Ander Biguri
*
---------------------------------------------------------------------------
---------------------------------------------------------------------------
Copyright (c) 2015, University of Bath and CERN- European Organization for
Nuclear Research
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
---------------------------------------------------------------------------
Contact: [email protected]
Codes : https://github.com/CERN/TIGRE
---------------------------------------------------------------------------
*/
#ifndef POCS_TV_HPP
#define POCS_TV_HPP
#include "TIGRE_common.hpp"
#include "GpuIds.hpp"
void pocs_tv(float* img,float* dst,float alpha,const long* image_size, int maxIter, const GpuIds& gpuids);
void checkFreeMemory(const GpuIds& gpuids, size_t *mem_GPU_global);
/*-------------------------------------------------------------------------
*
* Header for CUDA functions for Steepest descend in POCS-type algorithms.
*
* This file has the required headers for POCS_TV.cu
*
* CODE by Ander Biguri
*
---------------------------------------------------------------------------
---------------------------------------------------------------------------
Copyright (c) 2015, University of Bath and CERN- European Organization for
Nuclear Research
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
---------------------------------------------------------------------------

Contact: [email protected]
Codes : https://github.com/CERN/TIGRE
---------------------------------------------------------------------------
*/







#ifndef GD_TV_HPP
#define GD_TV_HPP
#include "TIGRE_common.hpp"
#include "GpuIds.hpp"

void pocs_tv(float* img,float* dst,float alpha,const long* image_size, int maxIter, const GpuIds& gpuids);

void checkFreeMemory(const GpuIds& gpuids, size_t *mem_GPU_global);
#endif
Loading