-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add MultiManager to h5pyd __init__.py #185
Conversation
""" | ||
Get filepath for a test case given a testname | ||
""" | ||
|
||
# Just call the external function | ||
filename = getTestFileName(basename, subfolder=subfolder) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getFileName
invokes getTestFileName
, but then overwrites the result to redo the same work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made the change so getTestFileName can be invoked outside the TestCase class, but forgot to remove the duplicate code. Fixed now.
test/hl/multi_benchmark.py
Outdated
|
||
for i in range(count): | ||
filename = getTestFileName(f"bm_{i:04d}", subfolder="multi_bm") | ||
f = h5py.File(filename, mode='w') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the user hasn't specifically created the multi_bm
, this will fail. We should either create that here or check for its existence to throw a helpful error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated to print message on IOError.
Looks good aside from my comments |
Make MultiManager visible in base h5pyd.
Add log handler to MultiManager
Use env variable to set location of multi_benchmark.py output domains.