-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
41 lines (22 loc) · 1.11 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
=====================================================================
BUGs
=====================================================================
=====================================================================
TODOs
=====================================================================
Check out difference between attributes using simple dataspace versus
using scalar dataspace
---------------------------------------------------------------------
Having to specify the data type twice is a bit unfortunate:
dset = file.create_dataset<float>("/doh", d);
dset->write<float>(v);
It is extra typing and (worse) can lead to mismatches and
unexpected results.
Perhaps keep the template param only on the create_dataset() call, but
store a type id which is then checked at time of the write() call.
---------------------------------------------------------------------
Add decent test set
Add reading to integer test case
---------------------------------------------------------------------
Allow files to be written with big-endian order?
---------------------------------------------------------------------