Skip to content

Commit

Permalink
bump version to 1.0.15 for ROCm 6.2
Browse files Browse the repository at this point in the history
Co-authored-by: Sam Wu <[email protected]>
  • Loading branch information
evetsso and samjwu authored Aug 8, 2024
1 parent baee8f8 commit 5d19ae2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .jenkins/staticanalysis.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ import java.nio.file.Path

def runCI =
{
nodeDetails, jobName, buildCommand, label ->
nodeDetails, jobName ->

def prj = new rocProject('hipFFT-internal', 'PreCheckin')
// customize for project
prj.paths.build_command = buildCommand
prj.libraryDependencies = ['rocRAND','rocFFT']

// Define test architectures, optional rocm version argument is available
Expand All @@ -28,6 +27,6 @@ ci: {

properties(auxiliary.addCommonProperties([pipelineTriggers([cron('0 1 * * 7')])]))
stage(urlJobName) {
runCI([ubuntu20:['any']], urlJobName)
runCI([ubuntu22:['any']], urlJobName)
}
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Documentation for hipFFT is available at
[https://rocm.docs.amd.com/projects/hipFFT/en/latest/](https://rocm.docs.amd.com/projects/hipFFT/en/latest/).

## hipFFT 1.0.15 for ROCm 6.2.0

### Fixes

* Added hip::host as a public link library, as hipfft.h includes HIP runtime headers.
* Prevent C++ exceptions leaking from public API functions.
* Make output of hipfftXt match cufftXt in geometry and alignment for 2D and 3D FFTs.

## hipFFT 1.0.14 for ROCm 6.1.0

### Changes
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ if(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY AND NOT WIN32)
endif()

# Version
set( VERSION_STRING "1.0.14" )
set( VERSION_STRING "1.0.15" )
set( hipfft_SOVERSION 0.1 )

if( ROCM_FOUND )
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "hipFFT"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v1.0.14
PROJECT_NUMBER = v1.0.15

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down

0 comments on commit 5d19ae2

Please sign in to comment.