|
5 | 5 | + When inserting nonblocking requests into the PnetCDF internal pending |
6 | 6 | queues, the queues are now kept sorted (using an insert sort) into an |
7 | 7 | increasing order of variable starting file offsets. This can avoid the |
8 | | - quick sort when flushing the pending requests. See [pull request #37] |
9 | | - (https://github.com/Parallel-NetCDF/PnetCDF/pull/37). To avoid internal |
10 | | - sorts completely, users are recommended to post nonblocking requests in |
11 | | - the increasing order of variable IDs and fixed-size variables first |
12 | | - followed by record variables. |
| 8 | + quick sort when flushing the pending requests. See |
| 9 | + [pull request #37](https://github.com/Parallel-NetCDF/PnetCDF/pull/37). |
| 10 | + To avoid internal sorts completely, users are recommended to post |
| 11 | + nonblocking requests in the increasing order of variable IDs and fixed-size |
| 12 | + variables first followed by record variables. |
13 | 13 |
|
14 | 14 | * New Limitations |
15 | 15 | + When building with NetCDF-4 feature enabled, using a NetCDF-4 library that |
16 | | - has already been built with PnetCDF enabled, i.e. --enable-pnetcdf, is not |
| 16 | + has already been built with PnetCDF enabled, i.e. `--enable-pnetcdf`, is not |
17 | 17 | supported. See [Issue #33](https://github.com/Parallel-NetCDF/PnetCDF/issues/33). |
18 | 18 |
|
19 | 19 | * Other updates: |
|
26 | 26 | + File header extent area between end of header and first variable will be |
27 | 27 | padded with null bytes if PnetCDF is configured with option |
28 | 28 | `--enable-null-byte-header-padding`. |
29 | | - + Add AC_PROG_CPP in configure.ac to check whether `-E` option is required by |
30 | | - the C preprocessor. |
| 29 | + + Add `AC_PROG_CPP` in configure.ac to check whether `-E` option is required |
| 30 | + by the C preprocessor. |
31 | 31 | + Add a check for whether `m4` utility is available, and abort the configure |
32 | 32 | if it is not. |
33 | 33 |
|
34 | 34 | * Bug fixes |
35 | 35 | + Fix ncmpidiff when comparing dimension names of 2 variables between files |
36 | 36 | whose dimension define orders are different. See |
37 | 37 | [Issue #42](https://github.com/Parallel-NetCDF/PnetCDF/pull/42). |
38 | | - + Fix error checking for programs in examples/C to ignore NC_ENOTENABLED |
39 | | - if PnetCDF was not built with --enable-profiling. Thanks to Bruno Pagani |
| 38 | + + Fix error checking for programs in examples/C to ignore `NC_ENOTENABLED` |
| 39 | + if PnetCDF was not built with `--enable-profiling`. Thanks to Bruno Pagani |
40 | 40 | and see [Issue #34](https://github.com/Parallel-NetCDF/PnetCDF/issues/34). |
41 | 41 |
|
42 | 42 | * New test program |
|
0 commit comments