Skip to content
Snippets Groups Projects
Commit 197e31b2 authored by William F Godoy's avatar William F Godoy
Browse files

Fix Python Flake8 format

parent bc14ae84
No related branches found
No related tags found
1 merge request!294Bp1read : Initial Reading Capabilities and latest API
......@@ -24,15 +24,15 @@ adios = adios2.ADIOS(comm, adios2.DebugON)
# ADIOS IO
bpIO = adios.DeclareIO("BPFile_N2N")
bpIO.SetEngine('BPFileWriter')
# bpIO.SetParameters( {"Threads" : "2", "ProfileUnits" : "Microseconds",
# bpIO.SetParameters( {"Threads" : "2", "ProfileUnits" : "Microseconds",
#"InitialBufferSize" : "17Kb"} )
bpIOParams = {}
bpIOParams = {}
bpIOParams['Threads'] = '2'
bpIOParams['ProfileUnits'] = 'Microseconds'
bpIOParams['InitialBufferSize'] = '17Kb'
bpIO.SetParameters(bpIOParams)
fileID = bpIO.AddTransport('File', {'Library' : 'fstream'} )
fileID = bpIO.AddTransport('File', {'Library': 'fstream'})
# ADIOS Variable name, shape, start, offset, constant dims
bpIO.DefineVariable(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment