forked from cortex-lab/KiloSort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_data_buff.m
178 lines (145 loc) · 4.9 KB
/
load_data_buff.m
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
if ~exist('loaded', 'var')
tic
if ~isempty(ops.chanMap)
if ischar(ops.chanMap)
load(ops.chanMap);
try
chanMapConn = chanMap(connected>1e-6);
catch
chanMapConn = 1+chanNums(connected>1e-6);
end
else
chanMapConn = ops.chanMap;
end
else
chanMapConn = 1:ops.Nchan;
end
batch_path = fullfile(root, 'batches');
if ~exist(batch_path, 'dir')
mkdir(batch_path);
end
NchanTOT = ops.NchanTOT;
d = dir(fullfile(root, fname));
ops.sampsToRead = floor(d.bytes/NchanTOT/2);
if ispc
dmem = memory;
memfree = 8 * 2^30;
memallocated = min(ops.ForceMaxRAMforDat, dmem.MemAvailableAllArrays) - memfree;
memallocated = max(0, memallocated);
else
if ops.ForceMaxRAMforDat<Inf
memallocated = ops.ForceMaxRAMforDat;
else
memallocated = 5e9; % user specified Inf but on this OS we can't calculate a max so set to 5GB.
end
end
nint16s = memallocated/2;
NT = 128*1024+ ops.ntbuff;
NTbuff = NT + 4*ops.ntbuff;
Nbatch = ceil(d.bytes/2/NchanTOT /(NT-ops.ntbuff));
Nbatch_buff = floor(nint16s/ops.Nchan /(NT-ops.ntbuff));
Nbatch_buff = min(Nbatch_buff, Nbatch-1);
%% load data into patches, filter, compute covariance, write back to
% disk
[b1, a1] = butter(3, ops.fshigh/ops.fs, 'high');
fprintf('Time %3.0fs. Loading raw data... \n', toc);
fid = fopen(fullfile(root, fname), 'r');
ibatch = 0;
Nchan = ops.Nchan;
CC = gpuArray.zeros( Nchan, Nchan, 'single');
if ~exist('DATA', 'var')
DATA = zeros(NT, ops.Nchan, Nbatch_buff, 'int16');
end
while 1
ibatch = ibatch + 1;
offset = max(0, 2*NchanTOT*((NT - ops.ntbuff) * (ibatch-1) - 2*ops.ntbuff));
if ibatch==1
ioffset = 0;
else
ioffset = ops.ntbuff;
end
fseek(fid, offset, 'bof');
buff = fread(fid, [NchanTOT NTbuff], '*int16');
% keyboard;
if isempty(buff)
break;
end
nsampcurr = size(buff,2);
if nsampcurr<NTbuff
buff(:, nsampcurr+1:NTbuff) = repmat(buff(:,nsampcurr), 1, NTbuff-nsampcurr);
end
dataRAW = gpuArray(buff);
dataRAW = dataRAW';
dataRAW = single(dataRAW);
dataRAW = dataRAW(:, chanMapConn);
datr = filter(b1, a1, dataRAW);
datr = flipud(datr);
datr = filter(b1, a1, datr);
datr = flipud(datr);
CC = CC + (datr' * datr)/NT;
if ibatch<=Nbatch_buff
DATA(:,:,ibatch) = gather(int16( datr(ioffset + (1:NT),:)));
end
end
CC = CC / ibatch;
fclose(fid);
fprintf('Time %3.0fs. Channel-whitening filters computed. \n', toc);
fprintf('Time %3.0fs. Loading raw data and applying filters... \n', toc);
switch ops.whitening
case 'diag'
CC = diag(diag(CC));
end
[E, D] = svd(CC);
eps = 1e-6;
Wrot = E * diag(1./(diag(D) + eps).^.5) * E';
Wrot = ops.scaleproc * Wrot;
%
ibatch = 0;
fid = fopen(fullfile(root, fname), 'r');
fidW = fopen(fullfile(root, fnameTW), 'w');
while 1
ibatch = ibatch + 1;
if ibatch<=Nbatch_buff
datr = single(gpuArray(DATA(:,:,ibatch)));
else
offset = max(0, 2*NchanTOT*((NT - ops.ntbuff) * (ibatch-1) - 2*ops.ntbuff));
if ibatch==1
ioffset = 0;
else
ioffset = ops.ntbuff;
end
fseek(fid, offset, 'bof');
buff = fread(fid, [NchanTOT NTbuff], '*int16');
if isempty(buff)
break;
end
nsampcurr = size(buff,2);
if nsampcurr<NTbuff
buff(:, nsampcurr+1:NTbuff) = repmat(buff(:,nsampcurr), 1, NTbuff-nsampcurr);
end
dataRAW = gpuArray(buff);
dataRAW = dataRAW';
dataRAW = single(dataRAW);
dataRAW = dataRAW(:, chanMapConn);
datr = filter(b1, a1, dataRAW);
datr = flipud(datr);
datr = filter(b1, a1, datr);
datr = flipud(datr);
datr = datr(ioffset + (1:NT),:);
end
datr = datr * Wrot;
if ibatch<=Nbatch_buff
DATA(:,:,ibatch) = gather(datr);
else
datcpu = gather(int16(datr));
fwrite(fidW, datcpu, 'int16');
end
end
Wrot = gather(Wrot);
rez.Wrot = Wrot;
fclose(fidW);
fclose(fid);
fprintf('Time %3.2f. Whitened data written to disk... \n', toc);
fprintf('Time %3.2f. Preprocessing complete!\n', toc);
loaded = 1;
end