Skip to content
Open
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
7710060
PyCuAmpcor: offer an option to fix the starting pixel locations
May 28, 2022
cf86b83
PyCuAmpcor: merge #622 by rtburns-jpl
May 25, 2023
3a4fa40
pycuampcor: deallocate memory objects
Dec 17, 2023
be9d498
Merge branch 'main' into pycuampcor
Nov 5, 2024
1be8be4
pycuampcor: add debug messages for loading the images
Nov 16, 2024
9ecd6b9
PyCuAmpcor V2: start with oversampled images
Nov 25, 2024
e85f962
PyCuAmpcor: fix the formula for determining the final offset
Nov 26, 2024
5f48f3e
PyCuAmpcor: oversampling procedure adjustment
Dec 11, 2024
6704ee9
PyCuAmpcor: add extra pads to correlation surface
Dec 12, 2024
85c8ec1
PyCuAmpcor: use split spectrum for even sequence oversampling
Dec 13, 2024
fe15e7a
PyCuAmpcor: add margin to the loaded secondary chip as well
Dec 13, 2024
3d7de1b
PyCuAmpcor: add a python script to plot offset fields
Dec 13, 2024
9ad2269
PyCuAmpcor: use a larger area to oversample the reference image
Dec 17, 2024
68cf742
PyCuAmpcor: first attemp with double precision - use CUAMPCOR_DOUBLE …
Dec 18, 2024
90fe814
PyCuAmpcor-DB: first running version
Dec 19, 2024
bcd2b91
PyCuAmpcor-DB: fixed some errors to produce the correct results
Dec 19, 2024
0cbd93b
PyCuAmpcor-DP: disable time domain algorithm for (os) window larger t…
Dec 19, 2024
67250aa
PyCuAmpcor-DP: change default to single precision
Dec 20, 2024
fd28b41
PyCuAmpcor-v2: solution to time domain code for gpus with 48K shared …
Dec 22, 2024
c656d72
PyCuAmpcor-V2: in zero padding for FFT oversampling, resort to conven…
Dec 23, 2024
1da8c64
PyCuAmpcor-v2: add correlation surface statistics (snr and variance) …
Dec 23, 2024
baf1df3
PyCuAmpcor-v2: add the correlation surface peak values to output
Dec 23, 2024
cc25c3b
PyCuAmpcor-v2: rename cuAmpcorChunk to cuAmpcorProcessor and use the …
Jan 10, 2025
03e3300
PyCuAmpcor-v2: bring back ROIPAC/ampcor workflow (set as default), br…
Jan 16, 2025
a6764b8
PyCuAmpcor-v2: repair Readme
Jan 16, 2025
7d3eb2c
PyAcuAmpcor-v2: add debug info to cuderamp=1
Jan 28, 2025
a3eb6a4
PyAcuAmpcor-v2: fix the search range in presence of extra pads
Jan 29, 2025
dd21e68
PyAcuAmpcor-v2: rename two workflows to TwoPass and OnePass wrt the n…
Feb 1, 2025
5d070d5
PyCuAmpcor-v2: clarify notations and notes, per PR comments
Feb 1, 2025
538704f
PyCuAmpcor-v2: add description for the offset visualization tool plot…
Feb 1, 2025
fa3231e
PyCuAmpcor-v2: revert to custom mmap image loader
Feb 14, 2025
936d7bc
PyCuAmpcor-v2: 1) fix data types for DP; 2) reduce the search range o…
Feb 28, 2025
fbcc209
pycuampcor-v2: fix an error in determining the corrwindow size
Feb 28, 2025
80a7c45
pycuampcor-v2: fix also the corrwindow size error for two-pass workflow
Feb 28, 2025
cecdee8
pycuampcor-v2: add get_sm_count method - the batch size is recommende…
Mar 6, 2025
68a4199
patch getLineBand in some fortran code
Apr 3, 2025
1670d80
Merge branch 'main' into pycuampcor-v2-devel
Apr 3, 2025
1ea8c27
Merge branch 'fortran-patch' into pycuampcor-v2-devel
Apr 3, 2025
9df1506
PyCuAmpcor: patch the scons script for the two different vironments i…
Apr 3, 2025
54070c2
pycuampcor-v2: change the order of parameters in classes to suppress …
Apr 3, 2025
7acaf20
pycuAmpcor add new workflow to TopsProc, topsApp
yuankailiu Apr 10, 2025
3269450
pycuampcor for topsApp: change the slc access method; add the output …
Apr 11, 2025
b99a56c
add OFFSET_PEAKVALUE_FILE to TopsProc
yuankailiu Apr 11, 2025
b9572cd
pycuampcor in topsApp: fix the runDenseOffsets script
Apr 11, 2025
d2b4104
revert typo changes
yuankailiu Apr 15, 2025
c417f5f
pycuampcor-v2: fix the distance in variance estimate in one-pass work…
Apr 15, 2025
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
Prev Previous commit
Next Next commit
PyCuAmpcor-DP: disable time domain algorithm for (os) window larger t…
…han 640 with DP
  • Loading branch information
Lijun Zhu committed Dec 19, 2024
commit 0cbd93bdfc46e7872be0abfde4fa030bf0d26f1d
7 changes: 7 additions & 0 deletions contrib/PyCuAmpcor/src/cuCorrTimeDomain.cu
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,12 @@ void cuCorrTimeDomain(cuArrays<real_type> *templates,
results->devData, results->height, results->width, results->size);
getLastCudaError("cuArraysCorrTime error");
}
#ifdef CUAMPCOR_DOUBLE
else {
fprintf(stderr, "The (oversampled) window size along the across direction %d should be smaller than 640.\n", imageNY);
throw;
}
#else
else if (imageNY <= 768) {
cuArraysCorrTime_kernel< 768,NPT><<<grid, 768, 0, stream>>>(nImages,
templates->devData, templates->height, templates->width, templates->size,
Expand All @@ -184,5 +190,6 @@ void cuCorrTimeDomain(cuArrays<real_type> *templates,
fprintf(stderr, "The (oversampled) window size along the across direction %d should be smaller than 1024.\n", imageNY);
throw;
}
#endif
}
// end of file