2016-01-26 20:14:33 -06:00
# Release notes
2016-07-18 13:56:13 -05:00
We have attempted to document known bugs and limitations - in particular the [HIP Kernel Language ](docs/markdown/hip_kernel_language.md ) document uses the phrase "Under Development", and the [HIP Runtime API bug list ](http://gpuopen-professionalcompute-tools.github.io/HIP/bug.html ) lists known bugs.
2016-01-26 20:14:33 -06:00
2016-07-18 13:56:13 -05:00
Upcoming:
2016-07-25 10:15:02 -05:00
- Stability: Enforce perioidic host synchronization to reclaim resources if the application has launched a large
2016-07-26 11:51:54 -05:00
number of commands (>1K) without synchronizing.
2016-07-25 10:15:02 -05:00
- Register keyword now silently ignored on HCC (previously would emit warning).
2016-07-26 11:51:54 -05:00
- Doc updates: Add some more frequently asked questions to FAQ, fix TOC in some files, review.
2016-09-17 08:41:25 -05:00
- Cookbook.
2016-08-01 10:47:25 +05:30
===================================================================================================
## Revision History:
2016-06-17 15:00:14 -05:00
===================================================================================================
2016-07-27 20:30:04 +05:30
Release:0.92.00
- hipLaunchKernel supports one-dimensional grid and/or block dims, without explicit cast to dim3 type (actually in 0.90.00)
- fp16 software support
- Support for Hawaii dGPUs using environment variable ROCM_TARGET=hawaii
- Support hipArray
- Improved profiler support
- Documentation updates
- Improvements to clang-hipify
2016-07-26 11:51:54 -05:00
2016-07-27 20:30:04 +05:30
2016-06-17 15:00:14 -05:00
===================================================================================================
2016-06-21 08:39:47 +05:30
Release:0.90.00
2016-06-29 20:50:14 +05:30
Date: 2016.06.29
- Support dynamic shared memory allocations
- Min HCC compiler version is > 16186.
- Expanded math functions (device and host). Document unsupported functions.
- hipFree with null pointer initializes runtime and returns success.
- Improve error code reporting on nvcc.
- Add hipPeekAtError for nvcc.
2016-05-03 11:10:56 -05:00
===================================================================================================
2016-05-09 13:49:01 -05:00
Release:0.86.00
2016-06-06 21:52:13 +05:30
Date: 2016.06.06
2016-05-09 13:49:01 -05:00
- Add clang-hipify : clang-based hipify tool. Improved parsing of source code, and automates
2016-05-03 11:10:56 -05:00
creation of hipLaunchParm variable.
2016-05-09 13:49:01 -05:00
- Implement memory register / unregister commands (hipHostRegister, hipHostUnregister)
- Add cross-linking support between G++ and HCC, in particular for interfaces that use
2016-05-03 11:10:56 -05:00
standard C++ libraries (ie std::vectors, std::strings). HIPCC now uses libstdc++ by default on the HCC
compilation path.
2016-05-09 13:49:01 -05:00
- More samples including gpu-burn, SHOC, nbody, rtm. See [HIP-Examples ](https://github.com/GPUOpen-ProfessionalCompute-Tools/HIP-Examples )
2016-06-07 22:18:18 +05:30
2016-04-18 13:00:23 +05:30
===================================================================================================
2016-05-09 13:49:01 -05:00
Release:0.84.01
Date: 2016.04.25
2016-03-24 14:08:08 -05:00
- Refactor HIP make and install system:
2016-04-18 13:00:23 +05:30
- Move to CMake. Refer to the installation section in README.md for details.
2016-03-24 14:08:08 -05:00
- Split source into multiple modular .cpp and .h files.
- Create static library and link.
2016-04-01 16:45:42 -05:00
- Set HIP_PATH to install.
- Make hipDevice and hipStream thread-safe.
- Prefered hipStream usage is still to create new streams for each new thread, but it works even if you don;t.
- Improve automated platform detection: If AMD GPU is installed and detected by driver, default HIP_PLATFORM to hcc.
- HIP_TRACE_API now prints arguments to the HIP function (in addition to name of function).
- Deprecate hipDeviceGetProp (Replace with hipGetDeviceProp)
2016-03-22 02:30:10 -05:00
- Deprecate hipMallocHost (Replace with hipHostMalloc)
2016-04-01 16:45:42 -05:00
- Deprecate hipFreeHost (Replace with hipHostFree)
2016-04-07 15:55:20 -05:00
- The mixbench benchmark tool for measuring operational intensity now has a HIP target, in addition to CUDA and OpenCL. Let the comparisons begin. :)
See here for more : https://github.com/ekondis/mixbench.
2016-02-18 20:25:03 -06:00
2016-03-07 11:01:29 +05:30
===================================================================================================
Release:0.82.00
Date: 2016.03.07
- Bump minimum required HCC workweek to 16074.
2016-03-08 11:14:03 +05:30
- Bump minimum required ROCK-Kernel-Driver and ROCR-Runtime to Developer Preview 2.
2016-03-07 11:01:29 +05:30
- Enable multi-GPU support.
* Use hipSetDevice to select a device for subsequent kernel calls and memory allocations.
* CUDA_VISIBLE_DEVICES / HIP_VISIBLE_DEVICE environment variable selects devices visible to the runtime.
- Support hipStreams – send sequences of copy and kernel commands to a device.
* Asynchronous copies supported.
- Optimize memory copy operations.
- Support hipPointerGetAttribute – can determine if a pointer is host or device.
- Enable atomics to local memory.
- Support for LC Direct-To-ISA path.
- Improved free memory reporting.
* hipMemGetInfo (report full memory used in current process).
* hipDeviceReset (deletes all memory allocated by current process).
2016-02-18 20:25:03 -06:00
===================================================================================================
2016-02-18 21:29:51 -06:00
Release:0.80.01
2016-02-18 20:25:03 -06:00
Date: 2016.02.18
- Improve reporting and support for device-side math functions.
- Update Runtime Documentation.
- Improve implementations of cross-lane operations (_ballot, _any, _all).
- Provide shuffle intrinsics (performance optimization in-progress).
2016-03-06 08:31:04 -06:00
- Support hipDeviceAttribute for querying "one-shot" device attributes, as an alternative to hipGetDeviceProperties.
2016-02-18 21:29:51 -06:00
2016-02-18 20:25:03 -06:00
===================================================================================================
2016-04-18 13:00:23 +05:30
Release:0.80.00
2016-02-18 20:25:03 -06:00
Date: 2016.01.25
Initial release with GPUOpen Launch.