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
set -x | |
export ITOOLS_ROOT=/opt/intel | |
export MKLROOT=${ITOOLS_ROOT}/mkl | |
export AF_PATH=/home/pradeep/gitroot/ArrayFireWorkspace/worktrees/v3.7/build/pkg | |
mkl_options="-lmkl_intel_ilp64 -lmkl_intel_thread -lmkl_core -liomp5 -lpthread -lm -ldl" |
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
#include <type_traits> | |
#include <vector> | |
#include <string> | |
#include <algorithm> | |
#include <iostream> | |
#include <iterator> | |
typedef enum { | |
ADD = 0, |
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
#include "itkFFTConvolutionImageFilter.h" | |
#include "itkImageFileReader.h" | |
#include "itkImageFileWriter.h" | |
#include "itkTikhonovDeconvolutionImageFilter.h" | |
#include "itkRescaleIntensityImageFilter.h" | |
#include "itkMacro.h" | |
#include "itkMath.h" | |
int main(int argc, char* argv[]) | |
{ |
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
#include "itkImageFileReader.h" | |
#include "itkImageFileWriter.h" | |
#include "itkCurvatureAnisotropicDiffusionImageFilter.h" | |
#include "itkRescaleIntensityImageFilter.h" | |
int main( int argc, char* argv[] ) | |
{ | |
if( argc != 6 ) | |
{ | |
std::cerr << "Usage: "<< std::endl; |
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
#include "itkFFTConvolutionImageFilter.h" | |
#include "itkImageFileReader.h" | |
#include "itkImageFileWriter.h" | |
#include "itkRichardsonLucyDeconvolutionImageFilter.h" | |
#include "itkRescaleIntensityImageFilter.h" | |
#include "itkMacro.h" | |
#include "itkMath.h" | |
int main(int argc, char* argv[]) | |
{ |
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
#include "itkImageFileReader.h" | |
#include "itkImageFileWriter.h" | |
#include "itkGPUGradientAnisotropicDiffusionImageFilter.h" | |
#include "itkRescaleIntensityImageFilter.h" | |
#include "itkTimeProbe.h" | |
#include <time.h> | |
#include <stdio.h> | |
int main( int argc, char* argv[] ) |
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
#include "itkFFTConvolutionImageFilter.h" | |
#include "itkImageFileReader.h" | |
#include "itkImageFileWriter.h" | |
#include "itkLandweberDeconvolutionImageFilter.h" | |
#include "itkCastImageFilter.h" | |
#include "itkMacro.h" | |
#include "itkMath.h" | |
int main(int argc, char* argv[]) | |
{ |
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
/* ************************************************************************ | |
* Copyright 2013 Advanced Micro Devices, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
/******************************************************* | |
* Copyright (c) 2017, ArrayFire | |
* All rights reserved. | |
* | |
* This file is distributed under 3-clause BSD license. | |
* The complete license agreement can be obtained at: | |
* http://arrayfire.com/licenses/BSD-3-Clause | |
********************************************************/ | |
#include <arrayfire.h> |
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
/******************************************************* | |
* Copyright (c) 2017, ArrayFire | |
* All rights reserved. | |
* | |
* This file is distributed under 3-clause BSD license. | |
* The complete license agreement can be obtained at: | |
* http://arrayfire.com/licenses/BSD-3-Clause | |
********************************************************/ | |
#include <arrayfire.h> |
NewerOlder