Skip to content

Instantly share code, notes, and snippets.

@kuchaale
Created February 12, 2025 10:04
Show Gist options
  • Select an option

  • Save kuchaale/0703c038d77b684371639fad8e2966cb to your computer and use it in GitHub Desktop.

Select an option

Save kuchaale/0703c038d77b684371639fad8e2966cb to your computer and use it in GitHub Desktop.
Visualization of multi-model distribution
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "f1ca697c-6e75-457f-9b36-dcfc6ec80b96",
"metadata": {},
"source": [
"# Import"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "df009324-414f-4ae2-b9ba-37865681b31a",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n"
]
}
],
"source": [
"import xarray as xr\n",
"import seaborn as sns\n",
"from pathlib import Path\n",
"import pandas as pd\n",
"import numpy as np\n",
"import matplotlib.pyplot as plt\n"
]
},
{
"cell_type": "markdown",
"id": "fb82d6a1-18b5-4aca-8e36-fbc179497972",
"metadata": {},
"source": [
"# Constants"
]
},
{
"cell_type": "code",
"execution_count": 42,
"id": "2c5799b4-f424-4a7a-bd22-1b921a3092c9",
"metadata": {},
"outputs": [],
"source": [
"interp_lev = [10,30,70,100]\n",
"sel_dict = dict(lat = slice(-20,20), time = slice('1991-09','1991-11'))"
]
},
{
"cell_type": "markdown",
"id": "180efeb8-debd-4d63-a9f5-b41a4d2ca1ef",
"metadata": {},
"source": [
"# Functions"
]
},
{
"cell_type": "code",
"execution_count": 72,
"id": "7db7694a-fba6-49fd-b355-df65db47fea2",
"metadata": {},
"outputs": [],
"source": [
"def difference(control, pert):\n",
" c = control.sel(**sel_dict).interp(lev = interp_lev).mean(['ens'])\n",
" p = pert.sel(**sel_dict).interp(lev = interp_lev).mean(['ens'])\n",
" diff = p-c\n",
" return diff\n",
"\n",
"def process_echam(ds):\n",
" ds = ds.sortby('lat')\n",
" ds = ds.rename({'plev': 'lev', 'st': 'T'})\n",
" ds['lev'] = ds.lev.values/100.\n",
" ds['lev'].attrs['units'] = 'hPa'\n",
" return ds\n",
"\n",
"def process_salsa(ds):\n",
" ds = ds.sortby('lat')\n",
" ds = ds.rename({'plev': 'lev', 'ta': 'T'})\n",
" ds['lev'] = ds.lev.values/100.\n",
" ds['lev'].attrs['units'] = 'hPa'\n",
" return ds"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "c5d3060b-9b49-4c43-994a-631cbc7bea05",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/pandas/core/computation/expressions.py:21: UserWarning: Pandas requires version '2.8.4' or newer of 'numexpr' (version '2.7.3' currently installed).\n",
" from pandas.core.computation.check import NUMEXPR_INSTALLED\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
" <div style=\"width: 24px; height: 24px; background-color: #e1e1e1; border: 3px solid #9D9D9D; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <h3 style=\"margin-bottom: 0px;\">Client</h3>\n",
" <p style=\"color: #9D9D9D; margin-bottom: 0px;\">Client-339e8a6a-e923-11ef-87a7-080038c03911</p>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
"\n",
" <tr>\n",
" \n",
" <td style=\"text-align: left;\"><strong>Connection method:</strong> Cluster object</td>\n",
" <td style=\"text-align: left;\"><strong>Cluster type:</strong> distributed.LocalCluster</td>\n",
" \n",
" </tr>\n",
"\n",
" \n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:8787/status\" target=\"_blank\">http://127.0.0.1:8787/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" \n",
"\n",
" </table>\n",
"\n",
" \n",
"\n",
" \n",
" <details>\n",
" <summary style=\"margin-bottom: 20px;\"><h3 style=\"display: inline;\">Cluster Info</h3></summary>\n",
" <div class=\"jp-RenderedHTMLCommon jp-RenderedHTML jp-mod-trusted jp-OutputArea-output\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #e1e1e1; border: 3px solid #9D9D9D; border-radius: 5px; position: absolute;\">\n",
" </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <h3 style=\"margin-bottom: 0px; margin-top: 0px;\">LocalCluster</h3>\n",
" <p style=\"color: #9D9D9D; margin-bottom: 0px;\">064b1192</p>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard:</strong> <a href=\"http://127.0.0.1:8787/status\" target=\"_blank\">http://127.0.0.1:8787/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Workers:</strong> 9\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads:</strong> 54\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total memory:</strong> 100.00 GiB\n",
" </td>\n",
" </tr>\n",
" \n",
" <tr>\n",
" <td style=\"text-align: left;\"><strong>Status:</strong> running</td>\n",
" <td style=\"text-align: left;\"><strong>Using processes:</strong> True</td>\n",
"</tr>\n",
"\n",
" \n",
" </table>\n",
"\n",
" <details>\n",
" <summary style=\"margin-bottom: 20px;\">\n",
" <h3 style=\"display: inline;\">Scheduler Info</h3>\n",
" </summary>\n",
"\n",
" <div style=\"\">\n",
" <div>\n",
" <div style=\"width: 24px; height: 24px; background-color: #FFF7E5; border: 3px solid #FF6132; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <h3 style=\"margin-bottom: 0px;\">Scheduler</h3>\n",
" <p style=\"color: #9D9D9D; margin-bottom: 0px;\">Scheduler-51960770-c92b-431e-9135-bcebe88f74db</p>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm:</strong> tcp://127.0.0.1:43851\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Workers:</strong> 9\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard:</strong> <a href=\"http://127.0.0.1:8787/status\" target=\"_blank\">http://127.0.0.1:8787/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads:</strong> 54\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Started:</strong> Just now\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total memory:</strong> 100.00 GiB\n",
" </td>\n",
" </tr>\n",
" </table>\n",
" </div>\n",
" </div>\n",
"\n",
" <details style=\"margin-left: 48px;\">\n",
" <summary style=\"margin-bottom: 20px;\">\n",
" <h3 style=\"display: inline;\">Workers</h3>\n",
" </summary>\n",
"\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 0</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:41319\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:36035/status\" target=\"_blank\">http://127.0.0.1:36035/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:41133\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-bgpggt_y\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 1</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:45857\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:38145/status\" target=\"_blank\">http://127.0.0.1:38145/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:46801\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-k7gtvy9p\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 2</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:39705\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:45711/status\" target=\"_blank\">http://127.0.0.1:45711/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:37501\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-3tk_l5a4\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 3</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:39095\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:40021/status\" target=\"_blank\">http://127.0.0.1:40021/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:41073\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-it9jw9no\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 4</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:35659\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:41519/status\" target=\"_blank\">http://127.0.0.1:41519/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:35391\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-3be_cpaf\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 5</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:32959\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:37311/status\" target=\"_blank\">http://127.0.0.1:37311/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:45177\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-osmah_1_\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 6</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:43069\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:34237/status\" target=\"_blank\">http://127.0.0.1:34237/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:44453\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-xt6xa9cf\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 7</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:44379\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39963/status\" target=\"_blank\">http://127.0.0.1:39963/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:35181\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-55ijqlqa\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
" <div style=\"margin-bottom: 20px;\">\n",
" <div style=\"width: 24px; height: 24px; background-color: #DBF5FF; border: 3px solid #4CC9FF; border-radius: 5px; position: absolute;\"> </div>\n",
" <div style=\"margin-left: 48px;\">\n",
" <details>\n",
" <summary>\n",
" <h4 style=\"margin-bottom: 0px; display: inline;\">Worker: 8</h4>\n",
" </summary>\n",
" <table style=\"width: 100%; text-align: left;\">\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Comm: </strong> tcp://127.0.0.1:35819\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Total threads: </strong> 6\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:46417/status\" target=\"_blank\">http://127.0.0.1:46417/status</a>\n",
" </td>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Memory: </strong> 11.11 GiB\n",
" </td>\n",
" </tr>\n",
" <tr>\n",
" <td style=\"text-align: left;\">\n",
" <strong>Nanny: </strong> tcp://127.0.0.1:36857\n",
" </td>\n",
" <td style=\"text-align: left;\"></td>\n",
" </tr>\n",
" <tr>\n",
" <td colspan=\"2\" style=\"text-align: left;\">\n",
" <strong>Local directory: </strong> /tmp/dask-worker-space/worker-9p4984gf\n",
" </td>\n",
" </tr>\n",
"\n",
" \n",
"\n",
" \n",
"\n",
" </table>\n",
" </details>\n",
" </div>\n",
" </div>\n",
" \n",
"\n",
" </details>\n",
"</div>\n",
"\n",
" </details>\n",
" </div>\n",
"</div>\n",
" </details>\n",
" \n",
"\n",
" </div>\n",
"</div>"
],
"text/plain": [
"<Client: 'tcp://127.0.0.1:43851' processes=9 threads=54, memory=100.00 GiB>"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from dask.distributed import Client\n",
"\n",
"client = Client()\n",
"client"
]
},
{
"cell_type": "markdown",
"id": "4a10f8c5-6941-4d90-82b8-b21a2fd6548d",
"metadata": {},
"source": [
"# Model processing"
]
},
{
"cell_type": "code",
"execution_count": 77,
"id": "7ebd14f0-aec4-4606-beb0-a071ed317b7b",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/xarray/core/concat.py:546: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n",
" common_dims = tuple(pd.unique([d for v in vars for d in v.dims]))\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/xarray/core/concat.py:546: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n",
" common_dims = tuple(pd.unique([d for v in vars for d in v.dims]))\n"
]
}
],
"source": [
"ls_all = []\n",
"model = 'ECHAM-SALSA'\n",
"\n",
"\n",
"scen = 'Em_Ism'\n",
"root_path = Path(f'/work/bm0885/HErSEA/HErSEA_Pin/{scen}/')\n",
"model_path = root_path / model\n",
"infiles = sorted(model_path.glob('**/*ta_199101-199512_pl.nc'))\n",
"ds_p = xr.open_mfdataset(\n",
" infiles,\n",
" concat_dim = 'ens',\n",
" parallel = True, \n",
" combine='nested'\n",
").pipe(process_salsa)\n",
"\n",
"scen = 'Cntrol'\n",
"root_path = Path(f'/work/bm0885/HErSEA/HErSEA_Pin/{scen}/')\n",
"model_path = root_path / model\n",
"infiles = sorted(model_path.glob('**/*ta_199101-199512_pl.nc'))\n",
"ds_c = xr.open_mfdataset(\n",
" infiles,\n",
" concat_dim = 'ens',\n",
" parallel = True, \n",
" combine='nested'\n",
").pipe(process_salsa)\n",
"\n",
"diff = difference(ds_c[sel_var], ds_p[sel_var]).load()\n",
"df = diff.to_dataframe().reset_index().drop(columns=['lat', 'lon', 'time'])\n",
"df['model'] = df.shape[0]*[model]\n",
"ls_all.append(df)"
]
},
{
"cell_type": "code",
"execution_count": 78,
"id": "1883a28f-9878-4b6b-9082-ac37713a5115",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/xarray/core/concat.py:546: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n",
" common_dims = tuple(pd.unique([d for v in vars for d in v.dims]))\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/xarray/core/concat.py:546: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n",
" common_dims = tuple(pd.unique([d for v in vars for d in v.dims]))\n"
]
}
],
"source": [
"model = 'ECHAM'\n",
"sel_var = 'T'\n",
"\n",
"scen = 'Em_Ism'\n",
"root_path = Path(f'/work/bm0885/HErSEA/HErSEA_Pin/{scen}/')\n",
"model_path = root_path / model\n",
"infiles = sorted(model_path.glob('**/*meteo_monavgs1991_1995_pl.nc'))\n",
"ds_p = xr.open_mfdataset(\n",
" infiles,\n",
" concat_dim = 'ens',\n",
" parallel = True, \n",
" combine='nested'\n",
").pipe(process_echam)\n",
"\n",
"scen = 'Cntrol'\n",
"root_path = Path(f'/work/bm0885/HErSEA/HErSEA_Pin/{scen}/')\n",
"model_path = root_path / model\n",
"infiles = sorted(model_path.glob('**/*meteo_monavgs1991_1995_pl.nc'))\n",
"ds_c = xr.open_mfdataset(\n",
" infiles,\n",
" concat_dim = 'ens',\n",
" parallel = True, \n",
" combine='nested'\n",
").pipe(process_echam)\n",
"\n",
"diff = difference(ds_c[sel_var], ds_p[sel_var]).load()\n",
"df = diff.to_dataframe().reset_index().drop(columns=['lat', 'lon', 'time'])\n",
"df['model'] = df.shape[0]*[model]\n",
"ls_all.append(df)"
]
},
{
"cell_type": "code",
"execution_count": 79,
"id": "99f1d255-a65a-410c-8dd6-26eb4de86901",
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" major: Attribute\n",
"thread 0 minor: Object not found\n",
" minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Object not found\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
" minor: Can't open object\n",
"thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
"thread 0 major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
":\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
":\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Unable to initialize object\n",
":\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Object not found\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Object not found\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
":\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
"thread 0 major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0 minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Object not found\n",
"thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0:\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
"thread 0 major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
":\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
"thread 0 major: Attribute\n",
":\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
" minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0:\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
" minor: Can't open object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0:\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0:\n",
" major: Attribute\n",
":\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0:\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
":\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0:\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Unable to initialize object\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Object not found\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0:\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 major: Virtual Object Layer\n",
"thread 0:\n",
" minor: Can't open object\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
":\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0:\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
"thread 0 major: Attribute\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Object not found\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Attribute\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
":\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"thread 0 major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Object not found\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0:\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
":\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
"thread 0 major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0 major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" minor: Object not found\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 minor: Can't open object\n",
" major: Virtual Object Layer\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0:\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 minor: Can't open object\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/xarray/core/concat.py:546: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n",
" common_dims = tuple(pd.unique([d for v in vars for d in v.dims]))\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Unable to initialize object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0:\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0:\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0:\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" minor: Object not found\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0:\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
":\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0:\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Object not found\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
":\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0thread 0:\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"/sw/spack-levante/mambaforge-23.1.0-1-Linux-x86_64-3boc6i/lib/python3.10/site-packages/xarray/core/concat.py:546: FutureWarning: unique with argument that is not not a Series, Index, ExtensionArray, or np.ndarray is deprecated and will raise in a future version.\n",
" common_dims = tuple(pd.unique([d for v in vars for d in v.dims]))\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Unable to initialize object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 minor: Object not found\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Can't open object\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
":\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
"thread 0 minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 minor: Unable to initialize object\n",
":\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Attribute\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Virtual Object Layer\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"thread 0 minor: Unable to initialize object\n",
" minor: Can't open object\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
":\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"thread 0 major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"thread 0 minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
"thread 0 major: Attribute\n",
" minor: Can't open object\n",
":\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Unable to initialize object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0:\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
":\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 major: Virtual Object Layer\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 major: Attribute\n",
" minor: Can't open object\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
":\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Object not found\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" minor: Can't open object\n",
"thread 0:\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" major: Attribute\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
":\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" minor: Can't open object\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Object not found\n",
" major: Attribute\n",
":\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
":\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 minor: Can't open object\n",
"thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" major: Attribute\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Object not found\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
":\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Object not found\n",
"thread 0:\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
"thread 0:\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
":\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Virtual Object Layer\n",
"thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
":\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
" minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
" minor: Object not found\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
"thread 0 minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
":\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
"thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
"thread 0 minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
"thread 0:\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" major: Attribute\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
":\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"thread 0 minor: Can't open object\n",
":\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"thread 0 major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
":\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
":\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" minor: Object not found\n",
" major: Attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 minor: Can't open object\n",
" major: Virtual Object Layer\n",
":\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Object not found\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 minor: Can't open object\n",
":\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
"thread 0thread 0 #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
":\n",
":\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"thread 0thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" minor: Can't open object\n",
":\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Object not found\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Virtual Object Layer\n",
"thread 0 #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"thread 0 major: Attribute\n",
" major: Attribute\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" major: Virtual Object Layer\n",
" minor: Object not found\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Object not found\n",
" major: Attribute\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
":\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Unable to initialize object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
":\n",
"thread 0 major: Attribute\n",
" minor: Can't open object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
":\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Unable to initialize object\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Object not found\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
" major: Attribute\n",
"thread 0 #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Unable to initialize object\n",
":\n",
" major: Attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
"thread 0 #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Object not found\n",
" major: Attribute\n",
":\n",
" major: Attribute\n",
" minor: Object not found\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) minor: Can't open object\n",
" major: Virtual Object Layer\n",
"thread 0 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) :\n",
" major: Virtual Object Layer\n",
"thread 0 #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
":\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
"thread 0 minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 476 in H5O__attr_open_by_name(): can't open attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" major: Attribute\n",
" major: Attribute\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" minor: Can't open object\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" minor: Can't open object\n",
" #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Can't open object\n",
" major: Attribute\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" minor: Unable to initialize object\n",
" minor: Object not found\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Object not found\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeGranularBitRoundNumberOfSignificantDigits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Object not found\n",
" minor: Unable to initialize object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitGroomNumberOfSignificantDigits'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 0:\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
"HDF5-DIAG: Error detected in HDF5 (1.12.2) major: Attribute\n",
"thread 0 minor: Can't open object\n",
":\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n",
" major: Virtual Object Layer\n",
" major: Attribute\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n",
" major: Virtual Object Layer\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n",
" major: Attribute\n",
" major: Virtual Object Layer\n",
" minor: Can't open object\n",
" minor: Can't open object\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n",
" major: Attribute\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" minor: Can't open object\n",
" #005: H5Oattribute.c line 494 in H5O__attr_open_by_name(): can't locate attribute: '_QuantizeBitRoundNumberOfSignificantBits'\n",
" #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" major:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment