Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
finam
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FINAM
finam
Commits
672b89fe
Commit
672b89fe
authored
2 years ago
by
Martin Lange
Browse files
Options
Downloads
Patches
Plain Diff
add benchmarks for file-based data in outputs
parent
7cf37acc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!238
Data memory-mapping
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
benchmarks/README.md
+6
-3
6 additions, 3 deletions
benchmarks/README.md
benchmarks/sdk/test_io.py
+45
-7
45 additions, 7 deletions
benchmarks/sdk/test_io.py
with
51 additions
and
10 deletions
benchmarks/README.md
+
6
−
3
View file @
672b89fe
...
...
@@ -28,10 +28,13 @@ Groups left to right:
### Push & pull
Push & pull using numpy arrays (
`np`
) and xarray arrays (
`xr`
).
(xarray benchmarks include a call to
`fm.tools.assign_time`
)
Push & pull using numpy arrays, with and without units conversion.


Push & pull using zero memory limit. I.e. everything written to and re-read from file.

## Data
...
...
This diff is collapsed.
Click to expand it.
benchmarks/sdk/test_io.py
+
45
−
7
View file @
672b89fe
import
datetime
as
dt
import
tempfile
import
unittest
import
pytest
...
...
@@ -6,12 +7,7 @@ import pytest
import
finam
as
fm
class
TestPushPull
(
unittest
.
TestCase
):
@pytest.fixture
(
autouse
=
True
)
def
setupBenchmark
(
self
,
benchmark
):
self
.
benchmark
=
benchmark
self
.
counter
=
0
class
TestPushPullBase
(
unittest
.
TestCase
):
def
push_pull
(
self
):
# Trick the shared memory check in the output
data
=
self
.
data
[
self
.
counter
%
2
]
...
...
@@ -22,7 +18,7 @@ class TestPushPull(unittest.TestCase):
self
.
counter
+=
1
return
data
def
setup_link
(
self
,
grid
,
target_units
):
def
setup_link
(
self
,
grid
,
target_units
,
memory_limit
=
None
,
tempdir
=
None
):
self
.
time
=
dt
.
datetime
(
2000
,
1
,
1
)
info1
=
fm
.
Info
(
time
=
self
.
time
,
grid
=
grid
,
units
=
"
mm
"
)
info2
=
fm
.
Info
(
time
=
self
.
time
,
grid
=
grid
,
units
=
target_units
)
...
...
@@ -35,11 +31,21 @@ class TestPushPull(unittest.TestCase):
self
.
out
=
fm
.
Output
(
name
=
"
Output
"
)
self
.
inp
=
fm
.
Input
(
name
=
"
Input
"
)
self
.
out
.
memory_limit
=
memory_limit
self
.
out
.
memory_location
=
tempdir
self
.
out
>>
self
.
inp
self
.
inp
.
ping
()
self
.
out
.
push_info
(
info1
)
self
.
inp
.
exchange_info
(
info2
)
class
TestPushPull
(
TestPushPullBase
):
@pytest.fixture
(
autouse
=
True
)
def
setupBenchmark
(
self
,
benchmark
):
self
.
benchmark
=
benchmark
self
.
counter
=
0
@pytest.mark.benchmark
(
group
=
"
sdk-io
"
)
def
test_push_pull_np_01_2x1
(
self
):
grid
=
fm
.
UniformGrid
((
2
,
1
))
...
...
@@ -123,3 +129,35 @@ class TestPushPull(unittest.TestCase):
self
.
setup_link
(
grid
,
target_units
=
"
L/m^2
"
)
data
=
self
.
benchmark
(
self
.
push_pull
)
self
.
assertEqual
(
fm
.
UNITS
.
Unit
(
"
L/m^2
"
),
data
.
units
)
@pytest.mark.benchmark
(
group
=
"
sdk-io-mem
"
)
def
test_push_pull_file_01_2x1
(
self
):
grid
=
fm
.
UniformGrid
((
2
,
1
))
with
tempfile
.
TemporaryDirectory
()
as
td
:
self
.
setup_link
(
grid
,
target_units
=
"
m
"
,
memory_limit
=
0
,
tempdir
=
td
)
self
.
benchmark
(
self
.
push_pull
)
self
.
out
.
finalize
()
@pytest.mark.benchmark
(
group
=
"
sdk-io-mem
"
)
def
test_push_pull_file_02_512x256
(
self
):
grid
=
fm
.
UniformGrid
((
512
,
256
))
with
tempfile
.
TemporaryDirectory
()
as
td
:
self
.
setup_link
(
grid
,
target_units
=
"
m
"
,
memory_limit
=
0
,
tempdir
=
td
)
self
.
benchmark
(
self
.
push_pull
)
self
.
out
.
finalize
()
@pytest.mark.benchmark
(
group
=
"
sdk-io-mem
"
)
def
test_push_pull_file_03_1024x512
(
self
):
grid
=
fm
.
UniformGrid
((
1024
,
512
))
with
tempfile
.
TemporaryDirectory
()
as
td
:
self
.
setup_link
(
grid
,
target_units
=
"
m
"
,
memory_limit
=
0
,
tempdir
=
td
)
self
.
benchmark
(
self
.
push_pull
)
self
.
out
.
finalize
()
@pytest.mark.benchmark
(
group
=
"
sdk-io-mem
"
)
def
test_push_pull_file_04_2048x1024
(
self
):
grid
=
fm
.
UniformGrid
((
2048
,
1024
))
with
tempfile
.
TemporaryDirectory
()
as
td
:
self
.
setup_link
(
grid
,
target_units
=
"
m
"
,
memory_limit
=
0
,
tempdir
=
td
)
self
.
benchmark
(
self
.
push_pull
)
self
.
out
.
finalize
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment