Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ML
lib
Binary Storage
Commits
13aecc98
Commit
13aecc98
authored
Feb 28, 2020
by
Zhukov, Alexander P
Browse files
Some restructuring/renaming
parent
b8c02026
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
13aecc98
...
...
@@ -7,5 +7,7 @@
/venv
*.zip
*.pyc
*.gz
*.bin
/py/__pycache__/
/LV17
c-code/test_
code
.c
→
c-code/test_
DBL
.c
View file @
13aecc98
...
...
@@ -4,18 +4,18 @@
int
main
(){
BinaryStorage
storage
=
bsOpen
(
"test_
c
.bin"
);
BinaryStorage
storage
=
bsOpen
(
"test_
DBL
.bin"
);
TAGS
tags
=
{.
data
=
NULL
,
.
count
=
0
};
//empty
int
i
=
0
;
for
(
i
=
0
;
i
<
3000
0
;
i
++
){
for
(
i
=
0
;
i
<
3000
;
i
++
){
struct
timeval
tp
;
long
int
ms
;
gettimeofday
(
&
tp
,
NULL
);
ms
=
tp
.
tv_sec
*
1000
+
tp
.
tv_usec
/
1000
;
TSTMP
timestamp
=
{.
seconds
=
tp
.
tv_sec
,
.
nanos
=
tp
.
tv_usec
*
1000
};
double
wf
[
10000
0
];
double
wf
[
10000
];
wf
[
0
]
=
1
.
0
;
wf
[
1
]
=
2
.
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment