forked from gpufit/Gpufit
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #1 from ironictoo/pr_build_action
CMake Updates and Linux Package Build
- Loading branch information
Showing
9 changed files
with
322 additions
and
153 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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#include "info.h" | ||
#include <algorithm> | ||
#include <limits> | ||
|
||
Info::Info() : | ||
n_parameters_(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
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,34 @@ | ||
#!/bin/bash | ||
|
||
printf "Gauss 2D Rotated\n" | ||
./Gpufit_Test_Gauss_Fit_2D_Rotated | ||
|
||
printf "\nGauss 2D Elliptic\n" | ||
./Gpufit_Test_Gauss_Fit_2D_Elliptic | ||
|
||
printf "\nGauss 2D\n" | ||
./Gpufit_Test_Gauss_Fit_2D | ||
|
||
printf "\nGauss 1D\n" | ||
./Gpufit_Test_Gauss_Fit_1D | ||
|
||
printf "\nLinear 1D\n" | ||
./Gpufit_Test_Linear_Fit_1D | ||
|
||
printf "\nFletcher Powell Helix\n" | ||
./Gpufit_Test_Fletcher_Powell_Helix_Fit | ||
|
||
printf "\nError Handling\n" | ||
./Gpufit_Test_Error_Handling | ||
|
||
printf "\nCauchy Fit 2D Elliptic\n" | ||
./Gpufit_Test_Cauchy_Fit_2D_Elliptic | ||
|
||
printf "\nBrown Dennis\n" | ||
./Gpufit_Test_Brown_Dennis_Fit | ||
|
||
printf "\nTest Consistency\n" | ||
./Cpufit_Gpufit_Test_Consistency | ||
|
||
|
||
|
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 @@ | ||
Package: gpufit | ||
Version: version_string | ||
Section: base | ||
Priority: optional | ||
Architecture: amd64 | ||
Depends: | ||
Maintainer: Samuel Barnes <[email protected]> | ||
Description: GPU-accelerated Levenberg-Marquardt curve fitting toolkit, implemented in CUDA | ||
Requires CUDA video card and driver | ||
Python, Java, and Matlab bindings |
Oops, something went wrong.