diff --git a/analysis/dask-testing.ipynb b/analysis/dask-testing.ipynb index 0b3bb8cd718d85646b8efda71ee1bf7e4b640e00..b8fd121fb40f070466e5b41137826b6a3e5781d1 100644 --- a/analysis/dask-testing.ipynb +++ b/analysis/dask-testing.ipynb @@ -5,12 +5,21 @@ "id": "6b0f6097-a216-43cf-be0b-2e23a325510d", "metadata": {}, "source": [ - "# Using dask distributed cluster to speed up computation of PV potential by factor of 10" + "# Using dask distributed cluster to speed up computation of PV potential by factor of 10\n", + "\n", + "Note: we are using dask client and one needs make sure to properly shutdown the client at the end of the analysis, which can be tricky or one might simply forget to do so. An alternative is to put entire parallel code into a with block, which shuts down the client automatically:\n", + "\n", + "```\n", + "with Client(n_workers=20, threads_per_worker=4, local_directory=dask_workspace) as client:\n", + " ds=xr.open_mfdataset(files_path, engine=\"h5netcdf\", chunks={\"valid_time\":1e5} )\n", + " ds[\"wspd\"] = core.windspeed(ds)\n", + " pvpot = core.pv_pot(ds).groupby(ds.valid_time.dt.month).mean(\"valid_time\").compute()\n", + "```" ] }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 8, "id": "9355f147-7603-413d-8989-69201a37653f", "metadata": {}, "outputs": [], @@ -54,31 +63,12 @@ "name": "stderr", "output_type": "stream", "text": [ - "2024-10-30 15:11:47,077 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-09ucm0a1', purging\n", - "2024-10-30 15:11:47,078 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-8hnk8l9k', purging\n", - "2024-10-30 15:11:47,078 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-y69gtjzm', purging\n", - "2024-10-30 15:11:47,078 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-8in2wy56', purging\n", - "2024-10-30 15:11:47,078 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-rag2a5dc', purging\n", - "2024-10-30 15:11:47,079 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-kg1uphkq', purging\n", - "2024-10-30 15:11:47,079 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-52uy9g3g', purging\n", - "2024-10-30 15:11:47,079 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-__ae7lww', purging\n", - "2024-10-30 15:11:47,079 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ei4nb1yz', purging\n", - "2024-10-30 15:11:47,079 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ei97cfn5', purging\n", - "2024-10-30 15:11:47,080 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-hemlkek0', purging\n", - "2024-10-30 15:11:47,080 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-oamkdz31', purging\n", - "2024-10-30 15:11:47,080 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ya3wn2uq', purging\n", - "2024-10-30 15:11:47,080 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-11c7kbsn', purging\n", - "2024-10-30 15:11:47,081 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ih8mh0jh', purging\n", - "2024-10-30 15:11:47,081 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ovdmksjm', purging\n", - "2024-10-30 15:11:47,081 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-x531gvad', purging\n", - "2024-10-30 15:11:47,081 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-mc9yi1m3', purging\n", - "2024-10-30 15:11:47,081 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-u_u4l6_n', purging\n", - "2024-10-30 15:11:47,082 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-s51qy92w', purging\n" + "2024-11-05 08:57:52,894 - distributed.client - ERROR - Failed to reconnect to scheduler after 30.00 seconds, closing client\n" ] } ], "source": [ - "client = Client(n_workers=20, threads_per_worker=5, loca_directory=\"/tmp/tmpvoigta80\")" + "client = Client(n_workers=20, threads_per_worker=5, local_directory=\"/tmp/tmpvoigta80/\")" ] }, { @@ -94,7 +84,7 @@ " <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-46fcc5b2-96d1-11ef-a15d-369f2043f720</p>\n", + " <p style=\"color: #9D9D9D; margin-bottom: 0px;\">Client-b4c3bddf-9b53-11ef-bfc3-369f2043f720</p>\n", " <table style=\"width: 100%; text-align: left;\">\n", "\n", " <tr>\n", @@ -107,7 +97,7 @@ " \n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:37489/status\" target=\"_blank\">http://127.0.0.1:37489/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39421/status\" target=\"_blank\">http://127.0.0.1:39421/status</a>\n", " </td>\n", " <td style=\"text-align: left;\"></td>\n", " </tr>\n", @@ -123,11 +113,11 @@ " </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;\">8f8bb217</p>\n", + " <p style=\"color: #9D9D9D; margin-bottom: 0px;\">68f5bb6b</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:37489/status\" target=\"_blank\">http://127.0.0.1:37489/status</a>\n", + " <strong>Dashboard:</strong> <a href=\"http://127.0.0.1:39421/status\" target=\"_blank\">http://127.0.0.1:39421/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Workers:</strong> 20\n", @@ -160,11 +150,11 @@ " <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-52f71046-a9af-4e44-bbe1-f8c7045bbb59</p>\n", + " <p style=\"color: #9D9D9D; margin-bottom: 0px;\">Scheduler-9bdecbe2-e1d0-4616-a119-741c04a3a0c4</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:44847\n", + " <strong>Comm:</strong> tcp://127.0.0.1:39359\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Workers:</strong> 20\n", @@ -172,7 +162,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard:</strong> <a href=\"http://127.0.0.1:37489/status\" target=\"_blank\">http://127.0.0.1:37489/status</a>\n", + " <strong>Dashboard:</strong> <a href=\"http://127.0.0.1:39421/status\" target=\"_blank\">http://127.0.0.1:39421/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads:</strong> 100\n", @@ -206,7 +196,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:32791\n", + " <strong>Comm: </strong> tcp://127.0.0.1:41435\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -214,7 +204,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:41049/status\" target=\"_blank\">http://127.0.0.1:41049/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:46665/status\" target=\"_blank\">http://127.0.0.1:46665/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -222,13 +212,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:45645\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:34897\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-yg6mcpat\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-s2q63igr\n", " </td>\n", " </tr>\n", "\n", @@ -251,7 +241,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:44565\n", + " <strong>Comm: </strong> tcp://127.0.0.1:46667\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -259,7 +249,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:42495/status\" target=\"_blank\">http://127.0.0.1:42495/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:36913/status\" target=\"_blank\">http://127.0.0.1:36913/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -267,13 +257,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:39531\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:35957\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-clgzvjyl\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-z0i7c4_a\n", " </td>\n", " </tr>\n", "\n", @@ -296,7 +286,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:34017\n", + " <strong>Comm: </strong> tcp://127.0.0.1:44347\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -304,7 +294,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:36359/status\" target=\"_blank\">http://127.0.0.1:36359/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39013/status\" target=\"_blank\">http://127.0.0.1:39013/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -312,13 +302,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:35055\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:43093\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-sxh92e12\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-fjiju1e5\n", " </td>\n", " </tr>\n", "\n", @@ -341,7 +331,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:33795\n", + " <strong>Comm: </strong> tcp://127.0.0.1:45525\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -349,7 +339,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39613/status\" target=\"_blank\">http://127.0.0.1:39613/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:43825/status\" target=\"_blank\">http://127.0.0.1:43825/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -357,13 +347,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:35631\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:45707\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-j7mp07vs\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-syx6fhn_\n", " </td>\n", " </tr>\n", "\n", @@ -386,7 +376,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:44581\n", + " <strong>Comm: </strong> tcp://127.0.0.1:40727\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -394,7 +384,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39899/status\" target=\"_blank\">http://127.0.0.1:39899/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:42077/status\" target=\"_blank\">http://127.0.0.1:42077/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -402,13 +392,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:45697\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:46469\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-4ycvqmnj\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-qpqal4mx\n", " </td>\n", " </tr>\n", "\n", @@ -431,7 +421,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:41071\n", + " <strong>Comm: </strong> tcp://127.0.0.1:33931\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -439,7 +429,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39727/status\" target=\"_blank\">http://127.0.0.1:39727/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:44505/status\" target=\"_blank\">http://127.0.0.1:44505/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -447,13 +437,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:40623\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:34575\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-1gf61gr0\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-f2_iwk5y\n", " </td>\n", " </tr>\n", "\n", @@ -476,7 +466,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:44785\n", + " <strong>Comm: </strong> tcp://127.0.0.1:41017\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -484,7 +474,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:33635/status\" target=\"_blank\">http://127.0.0.1:33635/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:33075/status\" target=\"_blank\">http://127.0.0.1:33075/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -492,13 +482,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:34969\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:35159\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-4p6amym6\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-qtg1dcb1\n", " </td>\n", " </tr>\n", "\n", @@ -521,7 +511,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:45977\n", + " <strong>Comm: </strong> tcp://127.0.0.1:44891\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -529,7 +519,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:46531/status\" target=\"_blank\">http://127.0.0.1:46531/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:42647/status\" target=\"_blank\">http://127.0.0.1:42647/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -537,13 +527,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:43157\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:38709\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-f11nh_k4\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-9c5hrba9\n", " </td>\n", " </tr>\n", "\n", @@ -566,7 +556,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:44201\n", + " <strong>Comm: </strong> tcp://127.0.0.1:37407\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -574,7 +564,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:38241/status\" target=\"_blank\">http://127.0.0.1:38241/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:46217/status\" target=\"_blank\">http://127.0.0.1:46217/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -582,13 +572,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:36715\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:38757\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-eqma5wce\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-plzlsi47\n", " </td>\n", " </tr>\n", "\n", @@ -611,7 +601,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:43949\n", + " <strong>Comm: </strong> tcp://127.0.0.1:33693\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -619,7 +609,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39715/status\" target=\"_blank\">http://127.0.0.1:39715/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:43885/status\" target=\"_blank\">http://127.0.0.1:43885/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -627,13 +617,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:40519\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:33637\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-gz7e8tdr\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-ysz1ufbm\n", " </td>\n", " </tr>\n", "\n", @@ -656,7 +646,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:41217\n", + " <strong>Comm: </strong> tcp://127.0.0.1:41755\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -664,7 +654,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:35559/status\" target=\"_blank\">http://127.0.0.1:35559/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:36101/status\" target=\"_blank\">http://127.0.0.1:36101/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -672,13 +662,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:39919\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:35147\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-_f_06f2v\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-_m0cv7h0\n", " </td>\n", " </tr>\n", "\n", @@ -701,7 +691,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:42261\n", + " <strong>Comm: </strong> tcp://127.0.0.1:37193\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -709,7 +699,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:46253/status\" target=\"_blank\">http://127.0.0.1:46253/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39461/status\" target=\"_blank\">http://127.0.0.1:39461/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -717,13 +707,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:44597\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:43853\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-2ilphign\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-1q3msedw\n", " </td>\n", " </tr>\n", "\n", @@ -746,7 +736,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:40167\n", + " <strong>Comm: </strong> tcp://127.0.0.1:33331\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -754,7 +744,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:33211/status\" target=\"_blank\">http://127.0.0.1:33211/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:41101/status\" target=\"_blank\">http://127.0.0.1:41101/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -762,13 +752,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:35411\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:33019\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-v0r1kwe2\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-fd_18793\n", " </td>\n", " </tr>\n", "\n", @@ -791,7 +781,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:38549\n", + " <strong>Comm: </strong> tcp://127.0.0.1:45299\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -799,7 +789,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:37033/status\" target=\"_blank\">http://127.0.0.1:37033/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:46869/status\" target=\"_blank\">http://127.0.0.1:46869/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -807,13 +797,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:42245\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:44949\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-b78831r0\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-3gc1tqeb\n", " </td>\n", " </tr>\n", "\n", @@ -836,7 +826,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:45557\n", + " <strong>Comm: </strong> tcp://127.0.0.1:46063\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -844,7 +834,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:36175/status\" target=\"_blank\">http://127.0.0.1:36175/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:35583/status\" target=\"_blank\">http://127.0.0.1:35583/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -852,13 +842,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:34515\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:39097\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-7z3ov42h\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-y7z6j9k5\n", " </td>\n", " </tr>\n", "\n", @@ -881,7 +871,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:36487\n", + " <strong>Comm: </strong> tcp://127.0.0.1:40661\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -889,7 +879,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:34149/status\" target=\"_blank\">http://127.0.0.1:34149/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:42399/status\" target=\"_blank\">http://127.0.0.1:42399/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -897,13 +887,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:40963\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:34861\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-4glznr57\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-yu6c6cqa\n", " </td>\n", " </tr>\n", "\n", @@ -926,7 +916,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:39885\n", + " <strong>Comm: </strong> tcp://127.0.0.1:37887\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -934,7 +924,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:45271/status\" target=\"_blank\">http://127.0.0.1:45271/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:34015/status\" target=\"_blank\">http://127.0.0.1:34015/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -942,13 +932,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:38921\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:39093\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-1a2e35l6\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-xcleg91h\n", " </td>\n", " </tr>\n", "\n", @@ -971,7 +961,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:33667\n", + " <strong>Comm: </strong> tcp://127.0.0.1:44273\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -979,7 +969,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:45937/status\" target=\"_blank\">http://127.0.0.1:45937/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:41609/status\" target=\"_blank\">http://127.0.0.1:41609/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -987,13 +977,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:41629\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:34707\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-9657nsul\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-100iwr0v\n", " </td>\n", " </tr>\n", "\n", @@ -1016,7 +1006,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:44799\n", + " <strong>Comm: </strong> tcp://127.0.0.1:39099\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -1024,7 +1014,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:36645/status\" target=\"_blank\">http://127.0.0.1:36645/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:44477/status\" target=\"_blank\">http://127.0.0.1:44477/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -1032,13 +1022,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:37323\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:36099\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-0rhwnki0\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-j_pqh6j1\n", " </td>\n", " </tr>\n", "\n", @@ -1061,7 +1051,7 @@ " <table style=\"width: 100%; text-align: left;\">\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Comm: </strong> tcp://127.0.0.1:34401\n", + " <strong>Comm: </strong> tcp://127.0.0.1:43849\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Total threads: </strong> 5\n", @@ -1069,7 +1059,7 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:39023/status\" target=\"_blank\">http://127.0.0.1:39023/status</a>\n", + " <strong>Dashboard: </strong> <a href=\"http://127.0.0.1:45529/status\" target=\"_blank\">http://127.0.0.1:45529/status</a>\n", " </td>\n", " <td style=\"text-align: left;\">\n", " <strong>Memory: </strong> 37.69 GiB\n", @@ -1077,13 +1067,13 @@ " </tr>\n", " <tr>\n", " <td style=\"text-align: left;\">\n", - " <strong>Nanny: </strong> tcp://127.0.0.1:44835\n", + " <strong>Nanny: </strong> tcp://127.0.0.1:32941\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-gu60adyy\n", + " <strong>Local directory: </strong> /tmp/tmpvoigta80/dask-worker-space/worker-zw8ol97_\n", " </td>\n", " </tr>\n", "\n", @@ -1110,7 +1100,7 @@ "</div>" ], "text/plain": [ - "<Client: 'tcp://127.0.0.1:44847' processes=20 threads=100, memory=753.83 GiB>" + "<Client: 'tcp://127.0.0.1:39359' processes=20 threads=100, memory=753.83 GiB>" ] }, "execution_count": 4, @@ -1129,87971 +1119,10 @@ "metadata": { "scrolled": true }, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #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 3 #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", - " 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: 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", - " #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: 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 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 476 in H5O__attr_open_by_name(): can't open 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", - " #006: H5Adense.c line 394 in H5A__dense_open(): can't locate attribute in name index\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 3:\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 1 #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\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", - " 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", - " 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: 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", - " major: Attribute\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 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: Attribute\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) thread 3 minor: Can't open object\n", - ":\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", - " 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", - " 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: 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", - " 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 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " 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) thread 4 minor: Can't open object\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", - " #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", - " #002: H5VLcallback.c line 1058 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", - " #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", - " #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: 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", - " #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: Unable to initialize object\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\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", - " minor: Can't open object\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", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\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", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open 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 4:\n", - " #005: H5Oattribute.c line 476 in H5O__attr_open_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", - " #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", - " 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: 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", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 4:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 1:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 3:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_by_name(): unable to load attribute info from object header\n", - " 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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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 2:\n", - " #000: H5A.c line 528 in H5Aopen_by_name(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #001: H5VLcallback.c line 1091 in H5VL_attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #002: H5VLcallback.c line 1058 in H5VL__attr_open(): attribute open failed\n", - " major: Virtual Object Layer\n", - " minor: Can't open object\n", - " #003: H5VLnative_attr.c line 130 in H5VL__native_attr_open(): can't open attribute\n", - " major: Attribute\n", - " minor: Can't open object\n", - " #004: H5Aint.c line 545 in H5A__open_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" - ] - } - ], + "outputs": [], "source": [ "start_time = time.time()\n", - "ds=xr.open_mfdataset(path+\"era5-2000-*.nc\", engine=\"netcdf4\", chunks={\"valid_time\":1e5} )\n", + "ds=xr.open_mfdataset(path+\"era5-2000-*.nc\", engine=\"h5netcdf\", chunks={\"valid_time\":1e5} )\n", "ds[\"wspd\"] = core.windspeed(ds)\n", "pvpot = core.pv_pot(ds).groupby(ds.valid_time.dt.month).mean(\"valid_time\").compute()\n", "end_time = time.time()\n", @@ -89110,7 +1139,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "Execution time: 78.72001 seconds\n" + "Execution time: 98.60829 seconds\n" ] } ], @@ -89128,536 +1157,6 @@ "client.shutdown()" ] }, - { - "cell_type": "code", - "execution_count": 8, - "id": "a375ca41-8af0-46e6-aa25-80241b9ab8f1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n", - "<defs>\n", - "<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n", - "<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n", - "<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n", - "<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n", - "</symbol>\n", - "<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n", - "<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n", - "<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n", - "<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n", - "<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n", - "</symbol>\n", - "</defs>\n", - "</svg>\n", - "<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n", - " *\n", - " */\n", - "\n", - ":root {\n", - " --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n", - " --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n", - " --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n", - " --xr-border-color: var(--jp-border-color2, #e0e0e0);\n", - " --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n", - " --xr-background-color: var(--jp-layout-color0, white);\n", - " --xr-background-color-row-even: var(--jp-layout-color1, white);\n", - " --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n", - "}\n", - "\n", - "html[theme=dark],\n", - "body[data-theme=dark],\n", - "body.vscode-dark {\n", - " --xr-font-color0: rgba(255, 255, 255, 1);\n", - " --xr-font-color2: rgba(255, 255, 255, 0.54);\n", - " --xr-font-color3: rgba(255, 255, 255, 0.38);\n", - " --xr-border-color: #1F1F1F;\n", - " --xr-disabled-color: #515151;\n", - " --xr-background-color: #111111;\n", - " --xr-background-color-row-even: #111111;\n", - " --xr-background-color-row-odd: #313131;\n", - "}\n", - "\n", - ".xr-wrap {\n", - " display: block !important;\n", - " min-width: 300px;\n", - " max-width: 700px;\n", - "}\n", - "\n", - ".xr-text-repr-fallback {\n", - " /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n", - " display: none;\n", - "}\n", - "\n", - ".xr-header {\n", - " padding-top: 6px;\n", - " padding-bottom: 6px;\n", - " margin-bottom: 4px;\n", - " border-bottom: solid 1px var(--xr-border-color);\n", - "}\n", - "\n", - ".xr-header > div,\n", - ".xr-header > ul {\n", - " display: inline;\n", - " margin-top: 0;\n", - " margin-bottom: 0;\n", - "}\n", - "\n", - ".xr-obj-type,\n", - ".xr-array-name {\n", - " margin-left: 2px;\n", - " margin-right: 10px;\n", - "}\n", - "\n", - ".xr-obj-type {\n", - " color: var(--xr-font-color2);\n", - "}\n", - "\n", - ".xr-sections {\n", - " padding-left: 0 !important;\n", - " display: grid;\n", - " grid-template-columns: 150px auto auto 1fr 20px 20px;\n", - "}\n", - "\n", - ".xr-section-item {\n", - " display: contents;\n", - "}\n", - "\n", - ".xr-section-item input {\n", - " display: none;\n", - "}\n", - "\n", - ".xr-section-item input + label {\n", - " color: var(--xr-disabled-color);\n", - "}\n", - "\n", - ".xr-section-item input:enabled + label {\n", - " cursor: pointer;\n", - " color: var(--xr-font-color2);\n", - "}\n", - "\n", - ".xr-section-item input:enabled + label:hover {\n", - " color: var(--xr-font-color0);\n", - "}\n", - "\n", - ".xr-section-summary {\n", - " grid-column: 1;\n", - " color: var(--xr-font-color2);\n", - " font-weight: 500;\n", - "}\n", - "\n", - ".xr-section-summary > span {\n", - " display: inline-block;\n", - " padding-left: 0.5em;\n", - "}\n", - "\n", - ".xr-section-summary-in:disabled + label {\n", - " color: var(--xr-font-color2);\n", - "}\n", - "\n", - ".xr-section-summary-in + label:before {\n", - " display: inline-block;\n", - " content: '►';\n", - " font-size: 11px;\n", - " width: 15px;\n", - " text-align: center;\n", - "}\n", - "\n", - ".xr-section-summary-in:disabled + label:before {\n", - " color: var(--xr-disabled-color);\n", - "}\n", - "\n", - ".xr-section-summary-in:checked + label:before {\n", - " content: '▼';\n", - "}\n", - "\n", - ".xr-section-summary-in:checked + label > span {\n", - " display: none;\n", - "}\n", - "\n", - ".xr-section-summary,\n", - ".xr-section-inline-details {\n", - " padding-top: 4px;\n", - " padding-bottom: 4px;\n", - "}\n", - "\n", - ".xr-section-inline-details {\n", - " grid-column: 2 / -1;\n", - "}\n", - "\n", - ".xr-section-details {\n", - " display: none;\n", - " grid-column: 1 / -1;\n", - " margin-bottom: 5px;\n", - "}\n", - "\n", - ".xr-section-summary-in:checked ~ .xr-section-details {\n", - " display: contents;\n", - "}\n", - "\n", - ".xr-array-wrap {\n", - " grid-column: 1 / -1;\n", - " display: grid;\n", - " grid-template-columns: 20px auto;\n", - "}\n", - "\n", - ".xr-array-wrap > label {\n", - " grid-column: 1;\n", - " vertical-align: top;\n", - "}\n", - "\n", - ".xr-preview {\n", - " color: var(--xr-font-color3);\n", - "}\n", - "\n", - ".xr-array-preview,\n", - ".xr-array-data {\n", - " padding: 0 5px !important;\n", - " grid-column: 2;\n", - "}\n", - "\n", - ".xr-array-data,\n", - ".xr-array-in:checked ~ .xr-array-preview {\n", - " display: none;\n", - "}\n", - "\n", - ".xr-array-in:checked ~ .xr-array-data,\n", - ".xr-array-preview {\n", - " display: inline-block;\n", - "}\n", - "\n", - ".xr-dim-list {\n", - " display: inline-block !important;\n", - " list-style: none;\n", - " padding: 0 !important;\n", - " margin: 0;\n", - "}\n", - "\n", - ".xr-dim-list li {\n", - " display: inline-block;\n", - " padding: 0;\n", - " margin: 0;\n", - "}\n", - "\n", - ".xr-dim-list:before {\n", - " content: '(';\n", - "}\n", - "\n", - ".xr-dim-list:after {\n", - " content: ')';\n", - "}\n", - "\n", - ".xr-dim-list li:not(:last-child):after {\n", - " content: ',';\n", - " padding-right: 5px;\n", - "}\n", - "\n", - ".xr-has-index {\n", - " font-weight: bold;\n", - "}\n", - "\n", - ".xr-var-list,\n", - ".xr-var-item {\n", - " display: contents;\n", - "}\n", - "\n", - ".xr-var-item > div,\n", - ".xr-var-item label,\n", - ".xr-var-item > .xr-var-name span {\n", - " background-color: var(--xr-background-color-row-even);\n", - " margin-bottom: 0;\n", - "}\n", - "\n", - ".xr-var-item > .xr-var-name:hover span {\n", - " padding-right: 5px;\n", - "}\n", - "\n", - ".xr-var-list > li:nth-child(odd) > div,\n", - ".xr-var-list > li:nth-child(odd) > label,\n", - ".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n", - " background-color: var(--xr-background-color-row-odd);\n", - "}\n", - "\n", - ".xr-var-name {\n", - " grid-column: 1;\n", - "}\n", - "\n", - ".xr-var-dims {\n", - " grid-column: 2;\n", - "}\n", - "\n", - ".xr-var-dtype {\n", - " grid-column: 3;\n", - " text-align: right;\n", - " color: var(--xr-font-color2);\n", - "}\n", - "\n", - ".xr-var-preview {\n", - " grid-column: 4;\n", - "}\n", - "\n", - ".xr-index-preview {\n", - " grid-column: 2 / 5;\n", - " color: var(--xr-font-color2);\n", - "}\n", - "\n", - ".xr-var-name,\n", - ".xr-var-dims,\n", - ".xr-var-dtype,\n", - ".xr-preview,\n", - ".xr-attrs dt {\n", - " white-space: nowrap;\n", - " overflow: hidden;\n", - " text-overflow: ellipsis;\n", - " padding-right: 10px;\n", - "}\n", - "\n", - ".xr-var-name:hover,\n", - ".xr-var-dims:hover,\n", - ".xr-var-dtype:hover,\n", - ".xr-attrs dt:hover {\n", - " overflow: visible;\n", - " width: auto;\n", - " z-index: 1;\n", - "}\n", - "\n", - ".xr-var-attrs,\n", - ".xr-var-data,\n", - ".xr-index-data {\n", - " display: none;\n", - " background-color: var(--xr-background-color) !important;\n", - " padding-bottom: 5px !important;\n", - "}\n", - "\n", - ".xr-var-attrs-in:checked ~ .xr-var-attrs,\n", - ".xr-var-data-in:checked ~ .xr-var-data,\n", - ".xr-index-data-in:checked ~ .xr-index-data {\n", - " display: block;\n", - "}\n", - "\n", - ".xr-var-data > table {\n", - " float: right;\n", - "}\n", - "\n", - ".xr-var-name span,\n", - ".xr-var-data,\n", - ".xr-index-name div,\n", - ".xr-index-data,\n", - ".xr-attrs {\n", - " padding-left: 25px !important;\n", - "}\n", - "\n", - ".xr-attrs,\n", - ".xr-var-attrs,\n", - ".xr-var-data,\n", - ".xr-index-data {\n", - " grid-column: 1 / -1;\n", - "}\n", - "\n", - "dl.xr-attrs {\n", - " padding: 0;\n", - " margin: 0;\n", - " display: grid;\n", - " grid-template-columns: 125px auto;\n", - "}\n", - "\n", - ".xr-attrs dt,\n", - ".xr-attrs dd {\n", - " padding: 0;\n", - " margin: 0;\n", - " float: left;\n", - " padding-right: 10px;\n", - " width: auto;\n", - "}\n", - "\n", - ".xr-attrs dt {\n", - " font-weight: normal;\n", - " grid-column: 1;\n", - "}\n", - "\n", - ".xr-attrs dt:hover span {\n", - " display: inline-block;\n", - " background: var(--xr-background-color);\n", - " padding-right: 10px;\n", - "}\n", - "\n", - ".xr-attrs dd {\n", - " grid-column: 2;\n", - " white-space: pre-wrap;\n", - " word-break: break-all;\n", - "}\n", - "\n", - ".xr-icon-database,\n", - ".xr-icon-file-text2,\n", - ".xr-no-icon {\n", - " display: inline-block;\n", - " vertical-align: middle;\n", - " width: 1em;\n", - " height: 1.5em !important;\n", - " stroke-width: 0;\n", - " stroke: currentColor;\n", - " fill: currentColor;\n", - "}\n", - "</style><pre class='xr-text-repr-fallback'><xarray.DataArray (month: 12, latitude: 721, longitude: 1440)> Size: 50MB\n", - "array([[[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " ...,\n", - " [0.48196262, 0.48198524, 0.4820098 , ..., 0.48184314,\n", - " 0.48187613, 0.4819154 ],\n", - " [0.4816251 , 0.48164183, 0.48165774, ..., 0.4815678 ,\n", - " 0.48158753, 0.4816064 ],\n", - " [0.4679344 , 0.4679344 , 0.4679344 , ..., 0.4679344 ,\n", - " 0.4679344 , 0.4679344 ]],\n", - "\n", - " [[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - "...\n", - " [0.41012865, 0.41013625, 0.41014126, ..., 0.4100696 ,\n", - " 0.41008776, 0.41010714],\n", - " [0.40905693, 0.40906295, 0.40906733, ..., 0.40901965,\n", - " 0.409032 , 0.40904516],\n", - " [0.3937947 , 0.3937947 , 0.3937947 , ..., 0.3937947 ,\n", - " 0.3937947 , 0.3937947 ]],\n", - "\n", - " [[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " ...,\n", - " [0.55768853, 0.55769956, 0.55770415, ..., 0.557582 ,\n", - " 0.5576082 , 0.55764294],\n", - " [0.55730903, 0.5573125 , 0.55731565, ..., 0.55726105,\n", - " 0.5572768 , 0.55729276],\n", - " [0.54138875, 0.54138875, 0.54138875, ..., 0.54138875,\n", - " 0.54138875, 0.54138875]]], dtype=float32)\n", - "Coordinates:\n", - " number int64 8B 0\n", - " * latitude (latitude) float64 6kB 90.0 89.75 89.5 ... -89.5 -89.75 -90.0\n", - " * longitude (longitude) float64 12kB 0.0 0.25 0.5 0.75 ... 359.2 359.5 359.8\n", - " * month (month) int64 96B 1 2 3 4 5 6 7 8 9 10 11 12</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.DataArray</div><div class='xr-array-name'></div><ul class='xr-dim-list'><li><span class='xr-has-index'>month</span>: 12</li><li><span class='xr-has-index'>latitude</span>: 721</li><li><span class='xr-has-index'>longitude</span>: 1440</li></ul></div><ul class='xr-sections'><li class='xr-section-item'><div class='xr-array-wrap'><input id='section-1bc0a03f-22d3-4f9f-bc23-5b3e97a7fe36' class='xr-array-in' type='checkbox' checked><label for='section-1bc0a03f-22d3-4f9f-bc23-5b3e97a7fe36' title='Show/hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-array-preview xr-preview'><span>0.0 0.0 0.0 0.0 0.0 0.0 ... 0.5414 0.5414 0.5414 0.5414 0.5414 0.5414</span></div><div class='xr-array-data'><pre>array([[[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " ...,\n", - " [0.48196262, 0.48198524, 0.4820098 , ..., 0.48184314,\n", - " 0.48187613, 0.4819154 ],\n", - " [0.4816251 , 0.48164183, 0.48165774, ..., 0.4815678 ,\n", - " 0.48158753, 0.4816064 ],\n", - " [0.4679344 , 0.4679344 , 0.4679344 , ..., 0.4679344 ,\n", - " 0.4679344 , 0.4679344 ]],\n", - "\n", - " [[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - "...\n", - " [0.41012865, 0.41013625, 0.41014126, ..., 0.4100696 ,\n", - " 0.41008776, 0.41010714],\n", - " [0.40905693, 0.40906295, 0.40906733, ..., 0.40901965,\n", - " 0.409032 , 0.40904516],\n", - " [0.3937947 , 0.3937947 , 0.3937947 , ..., 0.3937947 ,\n", - " 0.3937947 , 0.3937947 ]],\n", - "\n", - " [[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " ...,\n", - " [0.55768853, 0.55769956, 0.55770415, ..., 0.557582 ,\n", - " 0.5576082 , 0.55764294],\n", - " [0.55730903, 0.5573125 , 0.55731565, ..., 0.55726105,\n", - " 0.5572768 , 0.55729276],\n", - " [0.54138875, 0.54138875, 0.54138875, ..., 0.54138875,\n", - " 0.54138875, 0.54138875]]], dtype=float32)</pre></div></div></li><li class='xr-section-item'><input id='section-ca261342-0605-445d-9e65-280891a6237c' class='xr-section-summary-in' type='checkbox' checked><label for='section-ca261342-0605-445d-9e65-280891a6237c' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int64</div><div class='xr-var-preview xr-preview'>0</div><input id='attrs-99de2ea9-14ba-4cab-a7d0-c96df439d822' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-99de2ea9-14ba-4cab-a7d0-c96df439d822' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3ebad2c1-8780-4ae8-ba3f-a282b4988fa5' class='xr-var-data-in' type='checkbox'><label for='data-3ebad2c1-8780-4ae8-ba3f-a282b4988fa5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>ensemble member numerical id</dd><dt><span>units :</span></dt><dd>1</dd><dt><span>standard_name :</span></dt><dd>realization</dd></dl></div><div class='xr-var-data'><pre>array(0)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>latitude</span></div><div class='xr-var-dims'>(latitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>90.0 89.75 89.5 ... -89.75 -90.0</div><input id='attrs-b0748ebe-d41c-499b-bf22-5666475cfbbd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b0748ebe-d41c-499b-bf22-5666475cfbbd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4193d7c7-51af-4b1f-827e-3bfa8c8b1884' class='xr-var-data-in' type='checkbox'><label for='data-4193d7c7-51af-4b1f-827e-3bfa8c8b1884' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>latitude</dd><dt><span>long_name :</span></dt><dd>latitude</dd><dt><span>stored_direction :</span></dt><dd>decreasing</dd></dl></div><div class='xr-var-data'><pre>array([ 90. , 89.75, 89.5 , ..., -89.5 , -89.75, -90. ])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>longitude</span></div><div class='xr-var-dims'>(longitude)</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>0.0 0.25 0.5 ... 359.2 359.5 359.8</div><input id='attrs-6f0d1a46-768f-4031-8792-c43b93ecf182' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6f0d1a46-768f-4031-8792-c43b93ecf182' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-020aa1f5-1da1-485f-89f9-ab2f087e40a1' class='xr-var-data-in' type='checkbox'><label for='data-020aa1f5-1da1-485f-89f9-ab2f087e40a1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>longitude</dd><dt><span>long_name :</span></dt><dd>longitude</dd></dl></div><div class='xr-var-data'><pre>array([0.0000e+00, 2.5000e-01, 5.0000e-01, ..., 3.5925e+02, 3.5950e+02,\n", - " 3.5975e+02])</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>month</span></div><div class='xr-var-dims'>(month)</div><div class='xr-var-dtype'>int64</div><div class='xr-var-preview xr-preview'>1 2 3 4 5 6 7 8 9 10 11 12</div><input id='attrs-4970f985-c992-489b-b7fc-1dde78d94af9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4970f985-c992-489b-b7fc-1dde78d94af9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-47186f12-63ba-421f-a56b-0e6d1b3f2db7' class='xr-var-data-in' type='checkbox'><label for='data-47186f12-63ba-421f-a56b-0e6d1b3f2db7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time</dd><dt><span>standard_name :</span></dt><dd>time</dd></dl></div><div class='xr-var-data'><pre>array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12])</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-63e1194e-1d75-45b3-9000-4186ae2ef5f5' class='xr-section-summary-in' type='checkbox' ><label for='section-63e1194e-1d75-45b3-9000-4186ae2ef5f5' class='xr-section-summary' >Indexes: <span>(3)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>latitude</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-864c916e-910b-4ecc-95d0-99a61d6a6e84' class='xr-index-data-in' type='checkbox'/><label for='index-864c916e-910b-4ecc-95d0-99a61d6a6e84' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ 90.0, 89.75, 89.5, 89.25, 89.0, 88.75, 88.5, 88.25, 88.0,\n", - " 87.75,\n", - " ...\n", - " -87.75, -88.0, -88.25, -88.5, -88.75, -89.0, -89.25, -89.5, -89.75,\n", - " -90.0],\n", - " dtype='float64', name='latitude', length=721))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>longitude</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-114a95d6-aca6-4bd1-9dee-d33c51f9ed35' class='xr-index-data-in' type='checkbox'/><label for='index-114a95d6-aca6-4bd1-9dee-d33c51f9ed35' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([ 0.0, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0,\n", - " 2.25,\n", - " ...\n", - " 357.5, 357.75, 358.0, 358.25, 358.5, 358.75, 359.0, 359.25, 359.5,\n", - " 359.75],\n", - " dtype='float64', name='longitude', length=1440))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>month</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-6d0d88e0-6141-4ad0-8e7e-2396ee558a40' class='xr-index-data-in' type='checkbox'/><label for='index-6d0d88e0-6141-4ad0-8e7e-2396ee558a40' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Index([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], dtype='int64', name='month'))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-bcd5340a-2930-4856-b843-8741e0ce2596' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bcd5340a-2930-4856-b843-8741e0ce2596' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div>" - ], - "text/plain": [ - "<xarray.DataArray (month: 12, latitude: 721, longitude: 1440)> Size: 50MB\n", - "array([[[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " ...,\n", - " [0.48196262, 0.48198524, 0.4820098 , ..., 0.48184314,\n", - " 0.48187613, 0.4819154 ],\n", - " [0.4816251 , 0.48164183, 0.48165774, ..., 0.4815678 ,\n", - " 0.48158753, 0.4816064 ],\n", - " [0.4679344 , 0.4679344 , 0.4679344 , ..., 0.4679344 ,\n", - " 0.4679344 , 0.4679344 ]],\n", - "\n", - " [[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - "...\n", - " [0.41012865, 0.41013625, 0.41014126, ..., 0.4100696 ,\n", - " 0.41008776, 0.41010714],\n", - " [0.40905693, 0.40906295, 0.40906733, ..., 0.40901965,\n", - " 0.409032 , 0.40904516],\n", - " [0.3937947 , 0.3937947 , 0.3937947 , ..., 0.3937947 ,\n", - " 0.3937947 , 0.3937947 ]],\n", - "\n", - " [[0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " [0. , 0. , 0. , ..., 0. ,\n", - " 0. , 0. ],\n", - " ...,\n", - " [0.55768853, 0.55769956, 0.55770415, ..., 0.557582 ,\n", - " 0.5576082 , 0.55764294],\n", - " [0.55730903, 0.5573125 , 0.55731565, ..., 0.55726105,\n", - " 0.5572768 , 0.55729276],\n", - " [0.54138875, 0.54138875, 0.54138875, ..., 0.54138875,\n", - " 0.54138875, 0.54138875]]], dtype=float32)\n", - "Coordinates:\n", - " number int64 8B 0\n", - " * latitude (latitude) float64 6kB 90.0 89.75 89.5 ... -89.5 -89.75 -90.0\n", - " * longitude (longitude) float64 12kB 0.0 0.25 0.5 0.75 ... 359.2 359.5 359.8\n", - " * month (month) int64 96B 1 2 3 4 5 6 7 8 9 10 11 12" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "pvpot" - ] - }, { "cell_type": "code", "execution_count": null,